diff options
Diffstat (limited to 'koshell/iconsidepane.h')
-rw-r--r-- | koshell/iconsidepane.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/koshell/iconsidepane.h b/koshell/iconsidepane.h index e0c4f7f0..34678919 100644 --- a/koshell/iconsidepane.h +++ b/koshell/iconsidepane.h @@ -26,7 +26,7 @@ #include <klistbox.h> #include <tqbuttongroup.h> -#include <tqlayout.h> +#include <layout.h> #include <tqtooltip.h> #include <tqvbox.h> #include <tqwidgetstack.h> @@ -100,12 +100,12 @@ class EntryItemToolTip : public TQToolTip if ( !mListBox ) return; TQListBoxItem* item = mListBox->itemAt( p ); if ( !item ) return; - const TQRect tqitemRect = mListBox->tqitemRect( item ); - if ( !tqitemRect.isValid() ) return; + const TQRect itemRect = mListBox->itemRect( item ); + if ( !itemRect.isValid() ) return; const EntryItem *entryItem = static_cast<EntryItem*>( item ); TQString tipStr = entryItem->text(); - tip( tqitemRect, tipStr ); + tip( itemRect, tipStr ); } private: TQListBox* mListBox; @@ -123,7 +123,7 @@ class Navigator : public KListBox int insertItem(const TQString &_text, const TQString &_pix); - TQSize tqsizeHint() const; + TQSize sizeHint() const; IconViewMode viewMode(); bool showText(); bool showIcons(); |