diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:47:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-15 20:10:31 +0900 |
commit | 65ea671221fd8c4da167553547097672ff12610e (patch) | |
tree | 18391347cf4bc97d29d8678aa2d13cd2359d1a1b /atlantik/client | |
parent | ef381c09614ad289332c5f1e5a987213861e4f2d (diff) | |
download | tdegames-65ea671221fd8c4da167553547097672ff12610e.tar.gz tdegames-65ea671221fd8c4da167553547097672ff12610e.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 6c1a3b2f458949d56c9e1ff2bdf0b1cb33e73d93)
Diffstat (limited to 'atlantik/client')
-rw-r--r-- | atlantik/client/selectconfiguration_widget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/atlantik/client/selectconfiguration_widget.cpp b/atlantik/client/selectconfiguration_widget.cpp index f8f55855..b8ea7cd7 100644 --- a/atlantik/client/selectconfiguration_widget.cpp +++ b/atlantik/client/selectconfiguration_widget.cpp @@ -127,11 +127,11 @@ void SelectConfiguration::gameOption(TQString title, TQString type, TQString val void SelectConfiguration::changeOption() { - ConfigOption *configOption = m_configMap[(TQObject *)TQT_BASE_OBJECT_NAME::sender()]; + ConfigOption *configOption = m_configMap[(TQObject *)TQObject::sender()]; if (configOption) { - kdDebug() << "checked " << ((TQCheckBox *)TQT_BASE_OBJECT_NAME::sender())->isChecked() << endl; - emit changeOption( configOption->id(), TQString::number( ((TQCheckBox *)TQT_BASE_OBJECT_NAME::sender())->isChecked() ) ); + kdDebug() << "checked " << ((TQCheckBox *)TQObject::sender())->isChecked() << endl; + emit changeOption( configOption->id(), TQString::number( ((TQCheckBox *)TQObject::sender())->isChecked() ) ); } } @@ -148,7 +148,7 @@ void SelectConfiguration::optionChanged(ConfigOption *configOption) void SelectConfiguration::optionChanged() { - TQString command = m_optionCommandMap[(TQObject *)TQT_BASE_OBJECT_NAME::sender()]; + TQString command = m_optionCommandMap[(TQObject *)TQObject::sender()]; if (TQCheckBox *checkBox = m_checkBoxMap[command]) { |