diff options
Diffstat (limited to 'pyuic3/uic.cpp')
-rw-r--r-- | pyuic3/uic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuic3/uic.cpp b/pyuic3/uic.cpp index ea483a4..ac6af9b 100644 --- a/pyuic3/uic.cpp +++ b/pyuic3/uic.cpp @@ -315,7 +315,7 @@ bool Uic::isFrameworkCodeGenerated( const TQDomElement& e ) { TQDomElement n = getObjectProperty( e, "frameworkCode" ); if ( n.attribute("name") == "frameworkCode" && - !DomTool::elementToVariant( n.firstChild().toElement(), TQVariant( TRUE, 0 ) ).toBool() ) + !DomTool::elementToVariant( n.firstChild().toElement(), TQVariant( TRUE ) ).toBool() ) return FALSE; return TRUE; } |