diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-08 13:26:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-08 13:41:44 +0900 |
commit | eab2995851748c44d333fe168a1c141ccee193ab (patch) | |
tree | 980cdffc97ce11d6c5c78079da55c4275f2e34b2 /src/modules/objects/class_combobox.cpp | |
parent | 236b93c7266b84269b4be5841d8575b5f3432065 (diff) | |
download | kvirc-eab2995851748c44d333fe168a1c141ccee193ab.tar.gz kvirc-eab2995851748c44d333fe168a1c141ccee193ab.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/objects/class_combobox.cpp')
-rw-r--r-- | src/modules/objects/class_combobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/objects/class_combobox.cpp b/src/modules/objects/class_combobox.cpp index cdf5a06..197c7c0 100644 --- a/src/modules/objects/class_combobox.cpp +++ b/src/modules/objects/class_combobox.cpp @@ -131,7 +131,7 @@ KVSO_END_CONSTRUCTOR(KviKvsObject_combobox) bool KviKvsObject_combobox::init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams) { - setObject(TQT_TQOBJECT(new TQComboBox(parentScriptWidget(), name())), true); + setObject(new TQComboBox(parentScriptWidget(), name()), true); connect (((TQComboBox *)widget()),TQT_SIGNAL(activated( int )),this,TQT_SLOT(slotActivated( int ))); return true; } |