summaryrefslogtreecommitdiffstats
path: root/pyuic3/object.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2019-05-24 23:28:08 +0900
committerMichele Calgaro <[email protected]>2019-05-24 23:28:08 +0900
commit989e3c1dc427142cfa8ff7f718ec7eb12a13c12f (patch)
treeb2f5a2ae940b9a7ca5a78a81da5b1c6e3befe2bf /pyuic3/object.cpp
parentae59056eb2dcf9a20c2935e869150aca386d27f1 (diff)
downloadpytqt-989e3c1dc427142cfa8ff7f718ec7eb12a13c12f.tar.gz
pytqt-989e3c1dc427142cfa8ff7f718ec7eb12a13c12f.zip
Adjusted to latest TQVariant::TQVariant(bool) function.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'pyuic3/object.cpp')
-rw-r--r--pyuic3/object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuic3/object.cpp b/pyuic3/object.cpp
index b4c443b..5ee2b73 100644
--- a/pyuic3/object.cpp
+++ b/pyuic3/object.cpp
@@ -492,7 +492,7 @@ TQString Uic::setObjectProperty( const TQString& objClass, const TQString& obj,
if ( stdset )
v = "%1";
else
- v = "TQVariant(%1,0)";
+ v = "TQVariant(%1)";
v = v.arg( mkBool( e.firstChild().toText().data() ) );
} else if ( e.tagName() == "pixmap" ) {
v = e.firstChild().toText().data();