diff options
author | Michele Calgaro <[email protected]> | 2023-08-09 17:18:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-09 17:18:13 +0900 |
commit | 23278d259378e17087bf9aeaa5e45974dfb74bce (patch) | |
tree | 6f823898e2ef1c01fc119740aa337e885db4d4f8 /tdeui/tdecompletionbox.cpp | |
parent | c0b74ba868682f39c41a9f70ae11297425b711e1 (diff) | |
download | tdelibs-23278d259378e17087bf9aeaa5e45974dfb74bce.tar.gz tdelibs-23278d259378e17087bf9aeaa5e45974dfb74bce.zip |
Drop TQT_TQ*_CONST defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/tdecompletionbox.cpp')
-rw-r--r-- | tdeui/tdecompletionbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/tdecompletionbox.cpp b/tdeui/tdecompletionbox.cpp index f04a48e74..b0637c182 100644 --- a/tdeui/tdecompletionbox.cpp +++ b/tdeui/tdecompletionbox.cpp @@ -345,7 +345,7 @@ TQRect TDECompletionBox::calculateGeometry() const if ( d->m_parent && (combo = d->m_parent->parent() ) && combo->inherits("TQComboBox") ) { - const TQComboBox* cb = static_cast<const TQComboBox*>(TQT_TQWIDGET_CONST(combo)); + const TQComboBox* cb = static_cast<const TQComboBox*>(combo); //Expand to the combo width w = TQMAX( w, cb->width() ); |