diff options
author | Michele Calgaro <[email protected]> | 2023-07-12 10:00:04 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-12 10:00:04 +0900 |
commit | 0e6fbcd9abc3e00427ea1cfb6eb900dd864a1752 (patch) | |
tree | 73202212a13aaecf45e78a954c078e228a4f7982 | |
parent | 339cd31bd6a66973946c899a9e2aa7f6980dcc6b (diff) | |
download | filelight-0e6fbcd9abc3e00427ea1cfb6eb900dd864a1752.tar.gz filelight-0e6fbcd9abc3e00427ea1cfb6eb900dd864a1752.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | src/app/mainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp index a46644c..1b35f70 100644 --- a/src/app/mainWindow.cpp +++ b/src/app/mainWindow.cpp @@ -266,7 +266,7 @@ void setActionMenuTextOnly( TDEAction *a, TQString const &suffix ) TQWidget *w = a->container( i ); int const id = a->itemId( i ); - if (w->inherits( TQPOPUPMENU_OBJECT_NAME_STRING )) + if (w->inherits( "TQPopupMenu" )) static_cast<TQPopupMenu*>(w)->changeItem( id, menu_text ); else if (w->inherits( "TDEToolBar" )) { |