diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:33:54 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:33:54 -0600 |
commit | 4614cf2e7bce250f5b9cdef409cb89330d60bb1d (patch) | |
tree | 630297f3af9c048e22b4a376bb89f8f73e582983 /src/combobutton.cpp | |
parent | 4e8c56f8ce07340aadde2098d909a71c645a8000 (diff) | |
download | soundkonverter-4614cf2e7bce250f5b9cdef409cb89330d60bb1d.tar.gz soundkonverter-4614cf2e7bce250f5b9cdef409cb89330d60bb1d.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/combobutton.cpp')
-rwxr-xr-x | src/combobutton.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/combobutton.cpp b/src/combobutton.cpp index 9b71947..4723f39 100755 --- a/src/combobutton.cpp +++ b/src/combobutton.cpp @@ -1,7 +1,7 @@ #include "combobutton.h" -#include <tqlayout.h> +#include <layout.h> #include <tqstring.h> #include <tqpixmap.h> #include <tqstyle.h> @@ -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 ); |