summaryrefslogtreecommitdiffstats
path: root/src/combobutton.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-18 18:15:02 -0600
committerTimothy Pearson <[email protected]>2011-12-18 18:15:02 -0600
commit546e1d89596af9c0bd0176fb8812bf0faa00d9de (patch)
tree74fc0f8f1440160dd28fc70cae5b5f4f73960bee /src/combobutton.cpp
parentef9e895fa20a6118dacbd997a1ed7486e14b8ec6 (diff)
downloadsoundkonverter-546e1d89596af9c0bd0176fb8812bf0faa00d9de.tar.gz
soundkonverter-546e1d89596af9c0bd0176fb8812bf0faa00d9de.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/combobutton.cpp')
-rwxr-xr-xsrc/combobutton.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/combobutton.cpp b/src/combobutton.cpp
index 9b71947..d36b49c 100755
--- a/src/combobutton.cpp
+++ b/src/combobutton.cpp
@@ -43,11 +43,11 @@ void ComboButton::balanceSize()
int width;
if( m_sizeMode == Max )
- width = m_box->tqsizeHint().width()-17;
+ width = m_box->sizeHint().width()-17;
else
- width = m_button->tqsizeHint().width();
+ width = m_button->sizeHint().width();
- int height = ( m_box->tqsizeHint().height() > m_button->tqsizeHint().height() ) ? m_box->tqsizeHint().height() : m_button->tqsizeHint().height();
+ int height = ( m_box->sizeHint().height() > m_button->sizeHint().height() ) ? m_box->sizeHint().height() : m_button->sizeHint().height();
m_box->setFixedSize( width+17, height+m_increaseHeight );
m_button->setFixedSize( width, height+m_increaseHeight );