File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/tools/androiddeployqt Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3925,15 +3925,15 @@ int generateJavaQmlComponents(const Options &options)
3925
3925
for (const auto &value : params) {
3926
3926
const auto object = value.toObject ();
3927
3927
if (!object.contains (" typeName" _L1)) {
3928
- qWarning () << " Skipping function" << functionName
3928
+ qWarning () << " -- Skipping function" << functionName
3929
3929
<< " due to untyped function parameter detected while generating Java "
3930
3930
" code for QML methods." ;
3931
3931
return ;
3932
3932
}
3933
3933
3934
3934
const auto qmlParamType = object[" typeName" _L1].toString ();
3935
3935
if (!qmlToJavaType.contains (qmlParamType)) {
3936
- qWarning () << " Skipping function" << functionName
3936
+ qWarning () << " -- Skipping function" << functionName
3937
3937
<< " due to unsupported type detected in parameters:" << qmlParamType;
3938
3938
return ;
3939
3939
}
You can’t perform that action at this time.
0 commit comments