summaryrefslogtreecommitdiffstats
path: root/tdeui
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:33 +0900
commit2e0398f755ab6af9557cc805e4f484bbf0c150f6 (patch)
tree712a40baf33c3b3488ab74f0a7240cfd87cef532 /tdeui
parent8d88f31f74735c9580b7d374f709a22206d14982 (diff)
downloadtdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.tar.gz
tdelibs-2e0398f755ab6af9557cc805e4f484bbf0c150f6.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeui')
-rw-r--r--tdeui/kiconview.cpp4
-rw-r--r--tdeui/ktabbar.cpp2
-rw-r--r--tdeui/ktabbar.h4
-rw-r--r--tdeui/ktabwidget.cpp4
-rw-r--r--tdeui/ktabwidget.h4
5 files changed, 9 insertions, 9 deletions
diff --git a/tdeui/kiconview.cpp b/tdeui/kiconview.cpp
index 1699a6919..04b78f389 100644
--- a/tdeui/kiconview.cpp
+++ b/tdeui/kiconview.cpp
@@ -504,7 +504,7 @@ void TDEIconViewItem::calcRect( const TQString& text_ )
int pw = 0;
int ph = 0;
-#ifndef QT_NO_PICTURE
+#ifndef TQT_NO_PICTURE
if ( picture() ) {
TQRect br = picture()->boundingRect();
pw = br.width() + 2;
@@ -685,7 +685,7 @@ void TDEIconViewItem::paintPixmap( TQPainter *p, const TQColorGroup &cg )
{
TDEIconView *kview = static_cast<TDEIconView *>(iconView());
-#ifndef QT_NO_PICTURE
+#ifndef TQT_NO_PICTURE
if ( picture() ) {
TQPicture *pic = picture();
if ( isSelected() ) {
diff --git a/tdeui/ktabbar.cpp b/tdeui/ktabbar.cpp
index a49719519..29479c0e9 100644
--- a/tdeui/ktabbar.cpp
+++ b/tdeui/ktabbar.cpp
@@ -279,7 +279,7 @@ void KTabBar::dropEvent( TQDropEvent *e )
TQTabBar::dropEvent( e );
}
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
void KTabBar::wheelEvent( TQWheelEvent *e )
{
if ( e->orientation() == Qt::Horizontal )
diff --git a/tdeui/ktabbar.h b/tdeui/ktabbar.h
index 3877994ec..c5ea25c6d 100644
--- a/tdeui/ktabbar.h
+++ b/tdeui/ktabbar.h
@@ -69,7 +69,7 @@ signals:
void receivedDropEvent( int, TQDropEvent * );
void moveTab( int, int );
void closeRequest( int );
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
void wheelDelta( int );
#endif
@@ -78,7 +78,7 @@ protected:
virtual void mousePressEvent( TQMouseEvent *e );
virtual void mouseMoveEvent( TQMouseEvent *e );
virtual void mouseReleaseEvent( TQMouseEvent *e );
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
virtual void wheelEvent( TQWheelEvent *e );
#endif
diff --git a/tdeui/ktabwidget.cpp b/tdeui/ktabwidget.cpp
index f5c463a6c..d6800ab9a 100644
--- a/tdeui/ktabwidget.cpp
+++ b/tdeui/ktabwidget.cpp
@@ -66,7 +66,7 @@ KTabWidget::KTabWidget( TQWidget *parent, const char *name, WFlags f )
connect(tabBar(), TQT_SIGNAL(receivedDropEvent( int, TQDropEvent * )), TQT_SLOT(receivedDropEvent( int, TQDropEvent * )));
connect(tabBar(), TQT_SIGNAL(moveTab( int, int )), TQT_SLOT(moveTab( int, int )));
connect(tabBar(), TQT_SIGNAL(closeRequest( int )), TQT_SLOT(closeRequest( int )));
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
connect(tabBar(), TQT_SIGNAL(wheelDelta( int )), TQT_SLOT(wheelDelta( int )));
#endif
}
@@ -325,7 +325,7 @@ void KTabWidget::dropEvent( TQDropEvent *e )
TQTabWidget::dropEvent( e );
}
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
void KTabWidget::wheelEvent( TQWheelEvent *e )
{
if ( e->orientation() == Qt::Horizontal )
diff --git a/tdeui/ktabwidget.h b/tdeui/ktabwidget.h
index 4718c5753..d0a75b38b 100644
--- a/tdeui/ktabwidget.h
+++ b/tdeui/ktabwidget.h
@@ -277,7 +277,7 @@ protected:
virtual void dragMoveEvent( TQDragMoveEvent * );
virtual void dropEvent( TQDropEvent * );
unsigned int tabBarWidthForMaxChars( uint maxLength );
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
virtual void wheelEvent( TQWheelEvent *e );
#endif
virtual void resizeEvent( TQResizeEvent * );
@@ -289,7 +289,7 @@ protected slots:
virtual void mouseDoubleClick( int );
virtual void mouseMiddleClick( int );
virtual void closeRequest( int );
-#ifndef QT_NO_WHEELEVENT
+#ifndef TQT_NO_WHEELEVENT
virtual void wheelDelta( int );
#endif