diff options
author | Michele Calgaro <[email protected]> | 2023-11-18 16:44:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-18 16:58:12 +0900 |
commit | 57e0ed66347db15cb1cd66488f095107e7772ad9 (patch) | |
tree | aed23e1b51b285cf2ca9417fea697a7c2e52e700 /tdeui/tdeactionclasses.cpp | |
parent | c8ece3630d4d21acaf1749fc2cf660a0463070c3 (diff) | |
download | tdelibs-57e0ed66347db15cb1cd66488f095107e7772ad9.tar.gz tdelibs-57e0ed66347db15cb1cd66488f095107e7772ad9.zip |
Replace various strings '#define'd in tqtinterface
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/tdeactionclasses.cpp')
-rw-r--r-- | tdeui/tdeactionclasses.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/tdeactionclasses.cpp b/tdeui/tdeactionclasses.cpp index f70615b6c..5bea6cdaa 100644 --- a/tdeui/tdeactionclasses.cpp +++ b/tdeui/tdeactionclasses.cpp @@ -2028,7 +2028,7 @@ int TDEToggleToolBarAction::plug( TQWidget* w, int index ) while ( !tl->isDialog() && ( n = tl->parentWidget() ) ) // lookup parent and store tl = n; - TDEMainWindow * mw = tqt_dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a tdemainwindow + TDEMainWindow * mw = dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a tdemainwindow if ( mw ) m_toolBar = mw->toolBar( m_toolBarName ); |