summaryrefslogtreecommitdiffstats
path: root/tdecore/kdcoppropertyproxy.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-05-24 12:02:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-05-24 12:02:07 +0900
commit352c8f6a2190a65107a30c42230b67018fc5625f (patch)
treeb8cc3b8b315387deb5c3428ce89a4e2e5da217d6 /tdecore/kdcoppropertyproxy.cpp
parent080948356f99f601ae4328ca01867547a412a376 (diff)
downloadtdelibs-352c8f6a2190a65107a30c42230b67018fc5625f.tar.gz
tdelibs-352c8f6a2190a65107a30c42230b67018fc5625f.zip
Adjusted to latest TQVariant::TQVariant(bool) function.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/kdcoppropertyproxy.cpp')
-rw-r--r--tdecore/kdcoppropertyproxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/kdcoppropertyproxy.cpp b/tdecore/kdcoppropertyproxy.cpp
index 24bf6768b..663644b50 100644
--- a/tdecore/kdcoppropertyproxy.cpp
+++ b/tdecore/kdcoppropertyproxy.cpp
@@ -230,7 +230,7 @@ bool KDCOPPropertyProxy::processPropertyRequest( const TQCString &fun, const TQB
{
TQ_INT8 v;
stream >> v;
- prop = TQVariant( static_cast<bool>( v ), 1 );
+ prop = TQVariant( static_cast<bool>( v ) );
}
break;
DEMARSHAL( Double, double )