From 90f1f50f00651f7bc9f8acf50556968b4288400d Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Thu, 28 Nov 2013 13:30:19 -0600 Subject: Fix remnant QMIN/QMAX to TQMIN/TQMAX. --- konqueror/konq_combo.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'konqueror/konq_combo.cc') diff --git a/konqueror/konq_combo.cc b/konqueror/konq_combo.cc index e1bd27173..17075a529 100644 --- a/konqueror/konq_combo.cc +++ b/konqueror/konq_combo.cc @@ -749,15 +749,15 @@ int KonqComboListBoxPixmap::height( const TQListBox* lb ) const if ( text().isEmpty() ) h = pm.height(); else - h = QMAX( pm.height(), lb->fontMetrics().lineSpacing() + 2 ); - return QMAX( h, TQApplication::globalStrut().height() ); + h = TQMAX( pm.height(), lb->fontMetrics().lineSpacing() + 2 ); + return TQMAX( h, TQApplication::globalStrut().height() ); } int KonqComboListBoxPixmap::width( const TQListBox* lb ) const { if ( text().isEmpty() ) - return QMAX( pm.width() + 6, TQApplication::globalStrut().width() ); - return QMAX( pm.width() + lb->fontMetrics().width( text() ) + 6, + return TQMAX( pm.width() + 6, TQApplication::globalStrut().width() ); + return TQMAX( pm.width() + lb->fontMetrics().width( text() ) + 6, TQApplication::globalStrut().width() ); } -- cgit v1.2.1