summaryrefslogtreecommitdiffstats
path: root/pyuic2
diff options
context:
space:
mode:
Diffstat (limited to 'pyuic2')
-rw-r--r--pyuic2/domtool.cpp2
-rw-r--r--pyuic2/uic.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/pyuic2/domtool.cpp b/pyuic2/domtool.cpp
index 108844e..8a0cff2 100644
--- a/pyuic2/domtool.cpp
+++ b/pyuic2/domtool.cpp
@@ -165,7 +165,7 @@ TQVariant DomTool::elementToVariant( const TQDomElement& e, const TQVariant& def
v = TQVariant( e.firstChild().toText().data().toInt() );
} else if ( e.tagName() == "bool" ) {
TQString t = e.firstChild().toText().data();
- v = TQVariant( t == "true" || t == "1", 0 );
+ v = TQVariant( t == "true" || t == "1" );
} else if ( e.tagName() == "pixmap" ) {
v = TQVariant( e.firstChild().toText().data() );
} else if ( e.tagName() == "iconset" ) {
diff --git a/pyuic2/uic.cpp b/pyuic2/uic.cpp
index 58db033..a140ae3 100644
--- a/pyuic2/uic.cpp
+++ b/pyuic2/uic.cpp
@@ -432,7 +432,7 @@ void Uic::createFormImpl( const TQDomElement &e )
TQString page = createObjectImpl( n, objClass, "self" );
TQString label = DomTool::readAttribute( n, "title", "" ).toString();
out << indent << "self.addPage(" << page << ","<< trmacro << "(" << fixString( label ) << "))" << endl;
- TQVariant def( FALSE, 0 );
+ TQVariant def( FALSE );
if ( DomTool::hasAttribute( n, "backEnabled" ) )
out << indent << "self.setBackEnabled(" << page << "," << mkBool( DomTool::readAttribute( n, "backEnabled", def).toBool() ) << ")" << endl;
if ( DomTool::hasAttribute( n, "nextEnabled" ) )