From cb68a7857c80661d242ee5527ec6f99dc3f79fa7 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:43 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kmid/kmidbutton.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 kmid/kmidbutton.h (limited to 'kmid/kmidbutton.h') diff --git a/kmid/kmidbutton.h b/kmid/kmidbutton.h deleted file mode 100644 index ca48d9fb..00000000 --- a/kmid/kmidbutton.h +++ /dev/null @@ -1,32 +0,0 @@ -#include -#include - -class KMidButton : public TQPushButton -{ -protected: - - TQPixmap pixmap1,pixmap2; - - virtual void drawButton(TQPainter *paint) - { - if ((isOn())&&(!pixmap1.isNull())) paint->drawPixmap(0,0,pixmap1); - else if ((!isOn())&&(!pixmap2.isNull())) paint->drawPixmap(0,0,pixmap2); - }; - -public: - - KMidButton (TQWidget *parent,const char *name) : TQPushButton (parent,name) - { - }; - - ~KMidButton() - { - }; - - void setPixmaps(const TQPixmap& p1, const TQPixmap& p2) - { - pixmap1=p1; - pixmap2=p2; - }; - -}; -- cgit v1.2.1