diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:40:04 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:40:04 -0600 |
commit | f91149819be7e7f45e68f22876f3c0062a11d4b9 (patch) | |
tree | ea2e0b384a225b9fcedd5ec44e08d1ad2fc2570b /src/modules/objects/libkviobjects.cpp | |
parent | 32a249baaef1b910bffd79734c78cac3671f00f2 (diff) | |
download | kvirc-f91149819be7e7f45e68f22876f3c0062a11d4b9.tar.gz kvirc-f91149819be7e7f45e68f22876f3c0062a11d4b9.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/modules/objects/libkviobjects.cpp')
-rw-r--r-- | src/modules/objects/libkviobjects.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/objects/libkviobjects.cpp b/src/modules/objects/libkviobjects.cpp index 3a939ff8..2a4dc9de 100644 --- a/src/modules/objects/libkviobjects.cpp +++ b/src/modules/objects/libkviobjects.cpp @@ -153,7 +153,7 @@ static bool objects_kvs_cmd_killClass(KviKvsModuleCommandCall * c) Suppresses any warning message @description: Removes the definition of the class <class_name>.[br] - All the instances of the class are killed (thus tqchildren objects are killed too).[br] + All the instances of the class are killed (thus children objects are killed too).[br] All the derived class definitions are removed as well.[br] Builtin class definitions cannot be removed and this commands kills only all the instances of that class (derived class definitions @@ -913,7 +913,7 @@ static bool objects_kvs_fnc_listObjects(KviKvsModuleFunctionCall * cmd) static void dumpChildObjects(KviWindow *pWnd, TQObject *parent, const char *spacing, bool bFlag, KviKvsArray *n, int &idx) { #ifdef COMPILE_USE_QT4 - const TQObjectList list = parent->tqchildren(); + const TQObjectList list = parent->children(); if( !list.count() ) return; TQString sp(spacing); sp.append(">"); |