summaryrefslogtreecommitdiffstats
path: root/koshell/iconsidepane.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'koshell/iconsidepane.cpp')
-rw-r--r--koshell/iconsidepane.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/koshell/iconsidepane.cpp b/koshell/iconsidepane.cpp
index 211a04e3f..c92fa97a1 100644
--- a/koshell/iconsidepane.cpp
+++ b/koshell/iconsidepane.cpp
@@ -247,7 +247,7 @@ bool Navigator::showIcons()
void Navigator::mouseReleaseEvent(TQMouseEvent *e)
{
TDEListBox::mouseReleaseEvent(e);
- if ( e->button() != Qt::LeftButton || !mLeftMouseButtonPressed )
+ if ( e->button() != TQt::LeftButton || !mLeftMouseButtonPressed )
return;
if ( itemAt( e->pos() ) && executedItem == selectedItem() )
emit itemSelected( currentItem() );
@@ -257,10 +257,10 @@ void Navigator::mouseReleaseEvent(TQMouseEvent *e)
void Navigator::mousePressEvent(TQMouseEvent *e)
{
- if ( e->button() != Qt::LeftButton || itemAt( e->pos() ) == 0 )
+ if ( e->button() != TQt::LeftButton || itemAt( e->pos() ) == 0 )
{
mLeftMouseButtonPressed = false;
- if (e->button() == Qt::RightButton)
+ if (e->button() == TQt::RightButton)
slotShowRMBMenu( 0,mapToGlobal( e->pos() ) );
return;
}
@@ -405,7 +405,7 @@ void Navigator::slotShowRMBMenu( TQListBoxItem *, const TQPoint &pos )
IconSidePane::IconSidePane(TQWidget *parent, const char *name )
: TQVBox( parent, name )
{
- m_buttongroup = new TQButtonGroup(1, Qt::Horizontal, this);
+ m_buttongroup = new TQButtonGroup(1, TQt::Horizontal, this);
m_buttongroup->setExclusive(true);
m_buttongroup->hide();
mWidgetstack = new TQWidgetStack(this);