From 22625693f124aae09863f4d33e30b625a96c3557 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 12 Jul 2023 10:17:40 +0900 Subject: Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro --- kcontrol/locale/toplevel.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kcontrol/locale/toplevel.cpp') diff --git a/kcontrol/locale/toplevel.cpp b/kcontrol/locale/toplevel.cpp index d2a17ca74..339405461 100644 --- a/kcontrol/locale/toplevel.cpp +++ b/kcontrol/locale/toplevel.cpp @@ -244,7 +244,7 @@ void TDELocaleApplication::slotTranslate() // The untranslated string for TQLabel are stored in // the name() so we use that when retranslating TQObject *wc; - TQObjectList *list = queryList(TQWIDGET_OBJECT_NAME_STRING); + TQObjectList *list = queryList("TQWidget"); TQObjectListIt it(*list); while ( (wc = it.current()) != 0 ) { @@ -260,15 +260,15 @@ void TDELocaleApplication::slotTranslate() if (::qstrcmp(wc->name(), "unnamed") == 0) continue; - if (::qstrcmp(wc->className(), TQLABEL_OBJECT_NAME_STRING) == 0) + if (::qstrcmp(wc->className(), "TQLabel") == 0) ((TQLabel *)wc)->setText( m_locale->translate( wc->name() ) ); - else if (::qstrcmp(wc->className(), TQGROUPBOX_OBJECT_NAME_STRING) == 0 || - ::qstrcmp(wc->className(), TQVGROUPBOX_OBJECT_NAME_STRING) == 0) + else if (::qstrcmp(wc->className(), "TQGroupBox") == 0 || + ::qstrcmp(wc->className(), "TQVGroupBox") == 0) ((TQGroupBox *)wc)->setTitle( m_locale->translate( wc->name() ) ); - else if (::qstrcmp(wc->className(), TQPUSHBUTTON_OBJECT_NAME_STRING) == 0 || + else if (::qstrcmp(wc->className(), "TQPushButton") == 0 || ::qstrcmp(wc->className(), "KMenuButton") == 0) ((TQPushButton *)wc)->setText( m_locale->translate( wc->name() ) ); - else if (::qstrcmp(wc->className(), TQCHECKBOX_OBJECT_NAME_STRING) == 0) + else if (::qstrcmp(wc->className(), "TQCheckBox") == 0) ((TQCheckBox *)wc)->setText( m_locale->translate( wc->name() ) ); } delete list; -- cgit v1.2.1