From 7fdc8b30e85418cca031b45ad02f723373b73433 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= <slavek.banko@axis.cz>
Date: Sun, 10 Apr 2016 10:42:00 +0200
Subject: Initial TQt conversion
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
---
 src/tastymenu.h | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

(limited to 'src/tastymenu.h')

diff --git a/src/tastymenu.h b/src/tastymenu.h
index 66900fe..b1fa491 100644
--- a/src/tastymenu.h
+++ b/src/tastymenu.h
@@ -29,12 +29,12 @@
 
 #include <kpanelapplet.h>
 #include <kiconloader.h>
-#include <qstring.h>
+#include <tqstring.h>
 #include <kconfig.h>
-#include <qpopupmenu.h>
+#include <tqpopupmenu.h>
 #include <kconfigskeleton.h>
 #include <kglobalaccel.h>
-#include <qpainter.h>
+#include <tqpainter.h>
 
 #include "menuhandler.h"
 #include "prefs.h"
@@ -53,10 +53,10 @@ public:
      * @param Type The applet @ref type().
      * @param actions Standard RMB menu actions supported by the applet (see @ref action() ).
      * @param parent The pointer to the parent widget handed over in the factory function.
-     * @param name A Qt object name for your applet.
+     * @param name A TQt object name for your applet.
      **/
-    TastyMenu(const QString& configFile, Type t = Normal, int actions = 0,
-        QWidget *parent = 0, const char *name = 0);
+    TastyMenu(const TQString& configFile, Type t = Normal, int actions = 0,
+        TQWidget *parent = 0, const char *name = 0);
     /** destructor */
     ~TastyMenu();
     
@@ -126,10 +126,10 @@ public:
     virtual void preferences();
 
 protected:
-    virtual void resizeEvent(QResizeEvent *);
-    virtual void mousePressEvent(QMouseEvent *e);
-    virtual void enterEvent( QEvent * e );
-    virtual void leaveEvent( QEvent * e );
+    virtual void resizeEvent(TQResizeEvent *);
+    virtual void mousePressEvent(TQMouseEvent *e);
+    virtual void enterEvent( TQEvent * e );
+    virtual void leaveEvent( TQEvent * e );
 
 private:
     KSharedConfig *kConfig;
@@ -138,15 +138,15 @@ private:
     MenuHandler *menuHandler;
     TastyButton *button;
     TastyToolTip *menuTip;
-    QPoint menupos(QWidget *widget);
+    TQPoint menupos(TQWidget *widget);
     KGlobalAccel *globalAccel;
     KIconLoader *iconLoader;
     int numNewApplications;
 
 
-    QString _menuButtonLabel;
-    QString _menuButtonIcon;
-    QString _toolTipTitle;
+    TQString _menuButtonLabel;
+    TQString _menuButtonIcon;
+    TQString _toolTipTitle;
     bool _newAppsNotification;
     int _iconsize;
     bool _showBigToolTip;
-- 
cgit v1.2.1