summaryrefslogtreecommitdiffstats
path: root/src/tastybutton.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2016-04-10 10:42:00 +0200
committerSlávek Banko <[email protected]>2016-04-10 10:42:00 +0200
commit7fdc8b30e85418cca031b45ad02f723373b73433 (patch)
tree491150f68ddc476645599a00d04e27b194e9648c /src/tastybutton.h
parent3566ebfc3015ab32c4e0531defb41377c171fadb (diff)
downloadtastymenu-7fdc8b30e85418cca031b45ad02f723373b73433.tar.gz
tastymenu-7fdc8b30e85418cca031b45ad02f723373b73433.zip
Initial TQt conversion
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/tastybutton.h')
-rw-r--r--src/tastybutton.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tastybutton.h b/src/tastybutton.h
index 4fa0d89..7df7f0f 100644
--- a/src/tastybutton.h
+++ b/src/tastybutton.h
@@ -22,26 +22,26 @@
#include <kiconeffect.h>
#include <kicontheme.h>
-#include <qiconset.h>
-#include <qtoolbutton.h>
+#include <tqiconset.h>
+#include <tqtoolbutton.h>
/**
@author Marco Martin <[email protected]>
*/
-class TastyButton : public QToolButton
+class TastyButton : public TQToolButton
{
public:
- TastyButton(QWidget *parent);
+ TastyButton(TQWidget *parent);
~TastyButton();
- void setIconSet( QIconSet is );
+ void setIconSet( TQIconSet is );
protected:
- void drawButton( QPainter * p );
+ void drawButton( TQPainter * p );
private:
- QPixmap highLightedIcon;
+ TQPixmap highLightedIcon;
KIconEffect *iconEffect;
};