summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:25 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:25 -0600
commitd5da3c1493156c34a266894b58c026fb8992e448 (patch)
tree71a8d8d095503ba938d0e4accfeb89c427238237
parent31c3dd003947c90b1337c0dd4fff72dc16d7a290 (diff)
downloadkbfx-d5da3c14.tar.gz
kbfx-d5da3c14.zip
Remove spurious TQ_OBJECT instances
-rw-r--r--configdialog/kbfxconfigapp.h2
-rw-r--r--kbfxlib/common/kbfxfontchooser.h2
-rw-r--r--kbfxlib/common/kbfxkiodownload.h2
-rw-r--r--kbfxlib/common/kbfxpixmaplabel.h2
-rw-r--r--kbfxlib/common/kbfxpushbutton.h2
-rw-r--r--kbfxlib/data/kbfxplasmapluginloader.h2
-rw-r--r--kbfxlib/data/kbfxplugin.h2
-rw-r--r--src/kbfxbutton.h2
-rw-r--r--src/kbfxplasmacanvasabstractitem.h2
-rw-r--r--src/kbfxplasmacanvasgroup.h2
-rw-r--r--src/kbfxplasmacanvasgroupview.h2
-rw-r--r--src/kbfxplasmacanvasitem.h2
-rw-r--r--src/kbfxplasmacanvasitemwrapper.h2
-rw-r--r--src/kbfxplasmacanvasstack.h2
-rw-r--r--src/kbfxplasmacanvasview.h2
-rw-r--r--src/kbfxplasmaindexitem.h2
-rw-r--r--src/kbfxplasmaindexview.h2
-rw-r--r--src/kbfxspinx.h2
-rw-r--r--src/kbfxspinxmenu.h2
-rw-r--r--src/kbfxspinxpopup.h2
-rw-r--r--src/kbfxspinxscrollbar.h2
-rw-r--r--src/kbfxspinxtoolbar.h2
-rw-r--r--src/kbfxspinxtoolbutton.h2
-rw-r--r--src/kbfxspinxtop.h2
-rw-r--r--src/kbfxspinxview.h2
-rw-r--r--src/kbfxtooltip.h2
26 files changed, 26 insertions, 26 deletions
diff --git a/configdialog/kbfxconfigapp.h b/configdialog/kbfxconfigapp.h
index 3b64e45..c3502cb 100644
--- a/configdialog/kbfxconfigapp.h
+++ b/configdialog/kbfxconfigapp.h
@@ -89,7 +89,7 @@ enum {THEMES=0, BUTTON, FONTS, LAYOUT, PLUGINS, TOOLTIP, STYLE, ABOUT};
class KbfxConfigApp : public KbfxConfigDlgMain
{
Q_OBJECT
- TQ_OBJECT
+
public:
/**
* Default Constructor
diff --git a/kbfxlib/common/kbfxfontchooser.h b/kbfxlib/common/kbfxfontchooser.h
index 8d0191d..d216719 100644
--- a/kbfxlib/common/kbfxfontchooser.h
+++ b/kbfxlib/common/kbfxfontchooser.h
@@ -42,7 +42,7 @@ class TQFont;
class KBFXFontChooser : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
TQ_PROPERTY ( TQFont font READ font WRITE setFont )
public:
KBFXFontChooser ( TQWidget *parent = 0, const char *name = 0 );
diff --git a/kbfxlib/common/kbfxkiodownload.h b/kbfxlib/common/kbfxkiodownload.h
index 5058750..2d9e319 100644
--- a/kbfxlib/common/kbfxkiodownload.h
+++ b/kbfxlib/common/kbfxkiodownload.h
@@ -32,7 +32,7 @@
class KbfxKioDownload : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxKioDownload ( TQObject * parent = 0, const char * name = 0 );
diff --git a/kbfxlib/common/kbfxpixmaplabel.h b/kbfxlib/common/kbfxpixmaplabel.h
index decbf50..21418ca 100644
--- a/kbfxlib/common/kbfxpixmaplabel.h
+++ b/kbfxlib/common/kbfxpixmaplabel.h
@@ -30,7 +30,7 @@
class KbfxPixmapLabel : public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxPixmapLabel ( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 );
diff --git a/kbfxlib/common/kbfxpushbutton.h b/kbfxlib/common/kbfxpushbutton.h
index 65f20e5..2341893 100644
--- a/kbfxlib/common/kbfxpushbutton.h
+++ b/kbfxlib/common/kbfxpushbutton.h
@@ -29,7 +29,7 @@
class KbfxPushButton: public KPushButton
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxPushButton ( TQWidget *parent = 0, const char *name = 0 );
diff --git a/kbfxlib/data/kbfxplasmapluginloader.h b/kbfxlib/data/kbfxplasmapluginloader.h
index 346be7f..eea68ab 100644
--- a/kbfxlib/data/kbfxplasmapluginloader.h
+++ b/kbfxlib/data/kbfxplasmapluginloader.h
@@ -31,7 +31,7 @@
class KbfxPlasmaPluginLoader:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef TQMap<TQString,KbfxPlugin*> PluginMap;
diff --git a/kbfxlib/data/kbfxplugin.h b/kbfxlib/data/kbfxplugin.h
index 72031a0..86d47d0 100644
--- a/kbfxlib/data/kbfxplugin.h
+++ b/kbfxlib/data/kbfxplugin.h
@@ -38,7 +38,7 @@ class KbfxPlugin:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxPlugin();
diff --git a/src/kbfxbutton.h b/src/kbfxbutton.h
index 7467ac0..bc10cfd 100644
--- a/src/kbfxbutton.h
+++ b/src/kbfxbutton.h
@@ -48,7 +48,7 @@ class TQLabel;
class KbfxButton:public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxButton ( TQWidget * parent, const char * name = 0 );
diff --git a/src/kbfxplasmacanvasabstractitem.h b/src/kbfxplasmacanvasabstractitem.h
index c1c8ac5..d61b0be 100644
--- a/src/kbfxplasmacanvasabstractitem.h
+++ b/src/kbfxplasmacanvasabstractitem.h
@@ -36,7 +36,7 @@ class KbfxPlasmaCanvasAbstractItem:public TQObject,public TQCanvasSprite
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef enum {EXECUTABLE=0,SEPARATOR,INDEX,OTHER} Type;
diff --git a/src/kbfxplasmacanvasgroup.h b/src/kbfxplasmacanvasgroup.h
index 5ee60be..5d69e6c 100644
--- a/src/kbfxplasmacanvasgroup.h
+++ b/src/kbfxplasmacanvasgroup.h
@@ -33,7 +33,7 @@ class KbfxPlasmaCanvasGroup:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef TQPtrList<KbfxPlasmaCanvasAbstractItem> ItemList;
typedef TQPtrListIterator<KbfxPlasmaCanvasAbstractItem> ItemListIter;
diff --git a/src/kbfxplasmacanvasgroupview.h b/src/kbfxplasmacanvasgroupview.h
index f373887..8bce95d 100644
--- a/src/kbfxplasmacanvasgroupview.h
+++ b/src/kbfxplasmacanvasgroupview.h
@@ -35,7 +35,7 @@ class KbfxPlasmaCanvasGroupView:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef TQPtrList<KbfxPlasmaCanvasGroup> groupPtrList;
diff --git a/src/kbfxplasmacanvasitem.h b/src/kbfxplasmacanvasitem.h
index f240ef5..d243363 100644
--- a/src/kbfxplasmacanvasitem.h
+++ b/src/kbfxplasmacanvasitem.h
@@ -41,7 +41,7 @@ class KbfxPlasmaCanvasItem:public KbfxPlasmaCanvasAbstractItem
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/kbfxplasmacanvasitemwrapper.h b/src/kbfxplasmacanvasitemwrapper.h
index ba1954b..00a4698 100644
--- a/src/kbfxplasmacanvasitemwrapper.h
+++ b/src/kbfxplasmacanvasitemwrapper.h
@@ -31,7 +31,7 @@ class KbfxPlasmaCanvasItemWrapper:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxPlasmaCanvasItemWrapper ( TQCanvas * canvas );
diff --git a/src/kbfxplasmacanvasstack.h b/src/kbfxplasmacanvasstack.h
index 7c38fa2..7ad71f7 100644
--- a/src/kbfxplasmacanvasstack.h
+++ b/src/kbfxplasmacanvasstack.h
@@ -37,7 +37,7 @@ class KbfxPlasmaCanvasStack:public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef TQPtrList<KbfxPlasmaCanvasGroupView> groupPtrList;
diff --git a/src/kbfxplasmacanvasview.h b/src/kbfxplasmacanvasview.h
index 5a13999..671d7b2 100644
--- a/src/kbfxplasmacanvasview.h
+++ b/src/kbfxplasmacanvasview.h
@@ -52,7 +52,7 @@ class TQCanvasView;
class KbfxPlasmaCanvasView : public TQCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef TQMap<TQString,KbfxPlasmaCanvasStack*> stackMap;
diff --git a/src/kbfxplasmaindexitem.h b/src/kbfxplasmaindexitem.h
index ec77faf..2157438 100644
--- a/src/kbfxplasmaindexitem.h
+++ b/src/kbfxplasmaindexitem.h
@@ -27,7 +27,7 @@
class KbfxPlasmaIndexItem : public KbfxPlasmaCanvasAbstractItem
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/kbfxplasmaindexview.h b/src/kbfxplasmaindexview.h
index 587b090..5c65e84 100644
--- a/src/kbfxplasmaindexview.h
+++ b/src/kbfxplasmaindexview.h
@@ -43,7 +43,7 @@ class KbfxPlasmaIndexView : public TQCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/kbfxspinx.h b/src/kbfxspinx.h
index 5aa86c3..74cc5f8 100644
--- a/src/kbfxspinx.h
+++ b/src/kbfxspinx.h
@@ -63,7 +63,7 @@ class KbfxSpinx : public KPanelApplet,public DCOPObject
{
K_DCOP
Q_OBJECT
-// TQ_OBJECT
+//
public:
KbfxSpinx ( const TQString& configFile, Type t = Normal, int actions = 0,
diff --git a/src/kbfxspinxmenu.h b/src/kbfxspinxmenu.h
index 93dcada..57d8262 100644
--- a/src/kbfxspinxmenu.h
+++ b/src/kbfxspinxmenu.h
@@ -62,7 +62,7 @@
class KbfxSpinxMenuWidget:public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public :
KbfxSpinxMenuWidget ( TQWidget * parent = 0, const char * name = 0,WFlags fl =0 );
virtual ~KbfxSpinxMenuWidget();
diff --git a/src/kbfxspinxpopup.h b/src/kbfxspinxpopup.h
index 55cbad9..e26774f 100644
--- a/src/kbfxspinxpopup.h
+++ b/src/kbfxspinxpopup.h
@@ -44,7 +44,7 @@
class KbfxSpinxPopUp : public TQPopupMenu
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxSpinxPopUp ( TQWidget * parent = 0, const char * name = 0 ) ;
diff --git a/src/kbfxspinxscrollbar.h b/src/kbfxspinxscrollbar.h
index 50daf01..19c3e9e 100644
--- a/src/kbfxspinxscrollbar.h
+++ b/src/kbfxspinxscrollbar.h
@@ -38,7 +38,7 @@ class KbfxSpinxScrollBar:public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef enum {UP,DOWN,LEFT,RIGHT} Direction;
KbfxSpinxScrollBar ( TQWidget * parent = 0,const char * name = 0,int type = 0 );
diff --git a/src/kbfxspinxtoolbar.h b/src/kbfxspinxtoolbar.h
index b598b46..583c6fb 100644
--- a/src/kbfxspinxtoolbar.h
+++ b/src/kbfxspinxtoolbar.h
@@ -36,7 +36,7 @@ class KbfxSpinxToolBar:public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxSpinxToolBar ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 );
virtual ~KbfxSpinxToolBar();
diff --git a/src/kbfxspinxtoolbutton.h b/src/kbfxspinxtoolbutton.h
index 88cbcac..874742e 100644
--- a/src/kbfxspinxtoolbutton.h
+++ b/src/kbfxspinxtoolbutton.h
@@ -44,7 +44,7 @@ class KbfxSpinxToolButton:public TQLabel
{
Q_OBJECT
- TQ_OBJECT
+
public:
typedef enum{SINGLE=0,EXPANDABLE} ButtonType;
diff --git a/src/kbfxspinxtop.h b/src/kbfxspinxtop.h
index 7c94ae9..32482cf 100644
--- a/src/kbfxspinxtop.h
+++ b/src/kbfxspinxtop.h
@@ -37,7 +37,7 @@
class KbfxSpinxTop:public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxSpinxTop ( TQWidget * parent = 0,const char * name = 0 );
diff --git a/src/kbfxspinxview.h b/src/kbfxspinxview.h
index 3097809..98a37c3 100644
--- a/src/kbfxspinxview.h
+++ b/src/kbfxspinxview.h
@@ -28,7 +28,7 @@ class KbfxSpinxView:public TQFrame
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxSpinxView ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 );
diff --git a/src/kbfxtooltip.h b/src/kbfxtooltip.h
index a2076e3..fb575b6 100644
--- a/src/kbfxtooltip.h
+++ b/src/kbfxtooltip.h
@@ -46,7 +46,7 @@ class KbfxToolTip:public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
KbfxToolTip ( TQWidget * parent=0,const char * name=0,WFlags fl=WType_TopLevel );
~KbfxToolTip();