disable QML related output for the moment

This commit is contained in:
Uwe Rathmann 2019-11-25 14:05:46 +01:00
parent 3d58c94926
commit f7d658c9b8

View File

@ -119,6 +119,7 @@ int DoxDumper::dump( const Interface& interface, FILE* file )
return ok; return ok;
} }
#if 0 // disabled until we fully support QML
if ( !interface.qmlClassName.empty() ) if ( !interface.qmlClassName.empty() )
{ {
if ( !interface.className.empty() ) if ( !interface.className.empty() )
@ -127,6 +128,7 @@ int DoxDumper::dump( const Interface& interface, FILE* file )
if ( ok != 0 ) if ( ok != 0 )
return ok; return ok;
} }
#endif
return 0; return 0;
} }