diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 10:17:40 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-13 10:08:05 +0900 |
commit | 22625693f124aae09863f4d33e30b625a96c3557 (patch) | |
tree | f8c5e348d163222d25d1e0de896910bb06ce7aed /klipper | |
parent | 0d30cdb3832749dc273f6d7bb82859937a462b43 (diff) | |
download | tdebase-22625693f124aae09863f4d33e30b625a96c3557.tar.gz tdebase-22625693f124aae09863f4d33e30b625a96c3557.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>
Diffstat (limited to 'klipper')
-rw-r--r-- | klipper/toplevel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klipper/toplevel.cpp b/klipper/toplevel.cpp index ecdac5af7..252cf4ac2 100644 --- a/klipper/toplevel.cpp +++ b/klipper/toplevel.cpp @@ -1056,10 +1056,10 @@ bool KlipperWidget::ignoreClipboardChanges() const TQWidget *focusWidget = tqApp->focusWidget(); if ( focusWidget ) { - if ( focusWidget->inherits( TQSPINBOX_OBJECT_NAME_STRING ) || + if ( focusWidget->inherits( "TQSpinBox" ) || (focusWidget->parentWidget() && - focusWidget->inherits(TQLINEEDIT_OBJECT_NAME_STRING) && - focusWidget->parentWidget()->inherits(TQSPINWIDGET_OBJECT_NAME_STRING)) ) + focusWidget->inherits("TQLineEdit") && + focusWidget->parentWidget()->inherits("TQSpinWidget")) ) { return true; } |