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/keditlistbox.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/keditlistbox.cpp')
-rw-r--r-- | tdeui/keditlistbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/keditlistbox.cpp b/tdeui/keditlistbox.cpp index 142c4b437..33ca5bc19 100644 --- a/tdeui/keditlistbox.cpp +++ b/tdeui/keditlistbox.cpp @@ -418,7 +418,7 @@ void KEditListBox::virtual_hook( int, void* ) KEditListBox::CustomEditor::CustomEditor( KComboBox *combo ) { m_representationWidget = combo; - m_lineEdit = tqt_dynamic_cast<KLineEdit*>( combo->lineEdit() ); + m_lineEdit = dynamic_cast<KLineEdit*>( combo->lineEdit() ); assert( m_lineEdit ); } |