diff options
Diffstat (limited to 'kdeui/keditlistbox.cpp')
-rw-r--r-- | kdeui/keditlistbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdeui/keditlistbox.cpp b/kdeui/keditlistbox.cpp index b28b1ab00..b58244e93 100644 --- a/kdeui/keditlistbox.cpp +++ b/kdeui/keditlistbox.cpp @@ -79,7 +79,7 @@ void KEditListBox::init( bool checkAtEntering, int buttons, d->m_checkAtEntering = checkAtEntering; servNewButton = servRemoveButton = servUpButton = servDownButton = 0L; - tqsetSizePolicy(TQSizePolicy(TQSizePolicy::MinimumExpanding, + setSizePolicy(TQSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding)); TQGridLayout * grid = new TQGridLayout(this, 7, 2, @@ -119,7 +119,7 @@ void KEditListBox::setButtons( uint buttons ) if ( d->buttons == buttons ) return; - TQGridLayout* grid = static_cast<TQGridLayout *>( tqlayout() ); + TQGridLayout* grid = static_cast<TQGridLayout *>( layout() ); if ( ( buttons & Add ) && !servNewButton ) { servNewButton = new TQPushButton(i18n("&Add"), this); servNewButton->setEnabled(false); @@ -195,7 +195,7 @@ void KEditListBox::typedSomething(const TQString& text) else { StringComparisonMode mode = (StringComparisonMode) (ExactMatch | CaseSensitive ); - bool enable = (!m_listBox->tqfindItem( text, mode )); + bool enable = (!m_listBox->findItem( text, mode )); servNewButton->setEnabled( enable ); } } @@ -266,7 +266,7 @@ void KEditListBox::addItem() else { StringComparisonMode mode = (StringComparisonMode) (ExactMatch | CaseSensitive ); - alreadyInList =(m_listBox->tqfindItem(currentTextLE, mode) ); + alreadyInList =(m_listBox->findItem(currentTextLE, mode) ); } } |