diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-11 21:06:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 17:50:19 +0900 |
commit | 1bdf9a28d0246b319638f67ef3c15f2aaf7a9911 (patch) | |
tree | 7a54607be69b5a695286785202d2a28a864f98dd /src/preferencesdialog.cpp | |
parent | 4ffe7d4ef60061a9bd0b5d41e351edfcb3d2801e (diff) | |
download | kvpnc-1bdf9a28d0246b319638f67ef3c15f2aaf7a9911.tar.gz kvpnc-1bdf9a28d0246b319638f67ef3c15f2aaf7a9911.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e361a7cc42ad3ad0235ff7137bff77730380a351)
Diffstat (limited to 'src/preferencesdialog.cpp')
-rw-r--r-- | src/preferencesdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preferencesdialog.cpp b/src/preferencesdialog.cpp index 8c2f514..53fb08a 100644 --- a/src/preferencesdialog.cpp +++ b/src/preferencesdialog.cpp @@ -963,7 +963,7 @@ void PreferencesDialog::setupGui() lo->addWidget( GeneralOptionsWidget ); connect(GeneralOptionsWidget->useTDEwalletCheckBox, TQT_SIGNAL(toggled(bool)),this, TQT_SLOT(useTDEwalletToggled(bool))); - // const TQObjectList *GeneralOptionsWidgetList = GeneralOptionsWidget->queryList( TQCHECKBOX_OBJECT_NAME_STRING ); + // const TQObjectList *GeneralOptionsWidgetList = GeneralOptionsWidget->queryList( "TQCheckBox" ); // TQObjectListIt it( *GeneralOptionsWidgetList ); // // for ( TQObject *child = it.current(); it; ++it) @@ -6831,7 +6831,7 @@ void PreferencesDialog::showEvent(TQShowEvent* e) { KDialogBase::showEvent(e); - TQSplitter* splitter = ((TQSplitter*)child(0, TQSPLITTER_OBJECT_NAME_STRING, true)); + TQSplitter* splitter = ((TQSplitter*)child(0, "TQSplitter", true)); TDEListView* listView = ((TDEListView*)child(0, "TDEListView", true)); if (splitter && listView) |