summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-23 11:23:44 +0900
committerMichele Calgaro <[email protected]>2023-11-23 11:50:34 +0900
commit8263fdf7603821cad365e436ab78557f40a9e9db (patch)
tree07c85db4dbef5e877fc285af69f190eeeb050ddb /lib
parent00aa1f43c3491376c7eef84432710a2f8ceac62c (diff)
downloadkoffice-8263fdf7603821cad365e436ab78557f40a9e9db.tar.gz
koffice-8263fdf7603821cad365e436ab78557f40a9e9db.zip
Replaced various '#define' with actual strings - part 2
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 10a82ab583d7608cd9efd5fe1e76700c9d06b4c2)
Diffstat (limited to 'lib')
-rw-r--r--lib/kross/api/qtobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kross/api/qtobject.cpp b/lib/kross/api/qtobject.cpp
index 8f0819aa..55c07ca3 100644
--- a/lib/kross/api/qtobject.cpp
+++ b/lib/kross/api/qtobject.cpp
@@ -115,7 +115,7 @@ TQUObject* QtObject::toTQUObject(const TQString& signature, List::Ptr arguments)
if(paramlist[i].find("TQString") >= 0) {
const TQString s = (argcount > i) ? Variant::toString(arguments->item(i)) : TQString();
//krossdebug(TQString("EventSlot::toTQUObject s=%1").arg(s));
- static_TQUType_TQString.set( &(uo[i + 1]), s );
+ static_QUType_TQString.set( &(uo[i + 1]), s );
}
//TODO handle int, long, char*, TQStringList, etc.
else {