summaryrefslogtreecommitdiffstats
path: root/koshell
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:54:26 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-16 23:37:57 +0900
commitef06f14f2475bd08d3ea2ceec54a7b2238f3554e (patch)
tree03df826633e4ba084d133ca977c4fc37c74f21ac /koshell
parent895081803a715ee89f4a90cfbf63d558ef2b2ebc (diff)
downloadkoffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.tar.gz
koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'koshell')
-rw-r--r--koshell/iconsidepane.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/koshell/iconsidepane.cpp b/koshell/iconsidepane.cpp
index 211a04e3..c92fa97a 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);