diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 16:44:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 16:58:12 +0900 |
commit | 57e0ed66347db15cb1cd66488f095107e7772ad9 (patch) | |
tree | aed23e1b51b285cf2ca9417fea697a7c2e52e700 /tdeui/kcursor.cpp | |
parent | c8ece3630d4d21acaf1749fc2cf660a0463070c3 (diff) | |
download | tdelibs-57e0ed66347db15cb1cd66488f095107e7772ad9.tar.gz tdelibs-57e0ed66347db15cb1cd66488f095107e7772ad9.zip |
Replace various strings '#define'd in tqtinterface
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeui/kcursor.cpp')
-rw-r--r-- | tdeui/kcursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/kcursor.cpp b/tdeui/kcursor.cpp index 31bbc2f2e..43390d6a2 100644 --- a/tdeui/kcursor.cpp +++ b/tdeui/kcursor.cpp @@ -308,7 +308,7 @@ TQWidget* KCursorPrivateAutoHideEventFilter::actualWidget() const TQWidget* w = m_widget; // Is w a scrollview ? Call setCursor on the viewport in that case. - TQScrollView * sv = tqt_dynamic_cast<TQScrollView *>( w ); + TQScrollView * sv = dynamic_cast<TQScrollView *>( w ); if ( sv ) w = sv->viewport(); |