From c56e9aa280a5c584f6fa229432efdad836044590 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 12 Jul 2023 11:31:57 +0900 Subject: Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro (cherry picked from commit 30555507108fe0b2b3f9ded9de37f38d4a1d9c50) --- knode/kncomposer.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'knode/kncomposer.cpp') diff --git a/knode/kncomposer.cpp b/knode/kncomposer.cpp index 8695048e..a1d09317 100644 --- a/knode/kncomposer.cpp +++ b/knode/kncomposer.cpp @@ -437,7 +437,7 @@ void KNComposer::slotUndo() if (fw->inherits("KEdit")) ((TQMultiLineEdit*)fw)->undo(); - else if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->undo(); } @@ -448,7 +448,7 @@ void KNComposer::slotRedo() if (fw->inherits("KEdit")) ((TQMultiLineEdit*)fw)->redo(); - else if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->redo(); } @@ -459,7 +459,7 @@ void KNComposer::slotCut() if (fw->inherits("KEdit")) ((TQMultiLineEdit*)fw)->cut(); - else if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->cut(); else kdDebug(5003) << "wrong focus widget" << endl; } @@ -471,7 +471,7 @@ void KNComposer::slotCopy() if (fw->inherits("KEdit")) ((TQMultiLineEdit*)fw)->copy(); - else if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->copy(); else kdDebug(5003) << "wrong focus widget" << endl; @@ -485,7 +485,7 @@ void KNComposer::slotPaste() if (fw->inherits("KEdit")) ((TQMultiLineEdit*)fw)->paste(); - else if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->paste(); else kdDebug(5003) << "wrong focus widget" << endl; } @@ -495,9 +495,9 @@ void KNComposer::slotSelectAll() TQWidget* fw = focusWidget(); if (!fw) return; - if (fw->inherits(TQLINEEDIT_OBJECT_NAME_STRING)) + if (fw->inherits("TQLineEdit")) ((TQLineEdit*)fw)->selectAll(); - else if (fw->inherits(TQMULTILINEEDIT_OBJECT_NAME_STRING)) + else if (fw->inherits("TQMultiLineEdit")) ((TQMultiLineEdit*)fw)->selectAll(); } -- cgit v1.2.3