diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:21 -0600 |
commit | f988857fcf5b44899af08ef475d9a29c675b3731 (patch) | |
tree | c76fa817f819646aef3eb38bd371dbdad83f3241 /src/modules/help | |
parent | f3c8306949b2c5cece09d920309f23facf6d7022 (diff) | |
download | kvirc-f988857fcf5b44899af08ef475d9a29c675b3731.tar.gz kvirc-f988857fcf5b44899af08ef475d9a29c675b3731.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/modules/help')
-rw-r--r-- | src/modules/help/helpwidget.h | 2 | ||||
-rw-r--r-- | src/modules/help/helpwindow.h | 2 | ||||
-rwxr-xr-x | src/modules/help/index.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/help/helpwidget.h b/src/modules/help/helpwidget.h index 48019e7..ab7a886 100644 --- a/src/modules/help/helpwidget.h +++ b/src/modules/help/helpwidget.h @@ -35,7 +35,7 @@ class TQLineEdit; class KviHelpWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: KviHelpWidget(TQWidget *par,KviFrame * lpFrm,bool bIsStandalone = false); ~KviHelpWidget(); diff --git a/src/modules/help/helpwindow.h b/src/modules/help/helpwindow.h index 1f24353..57f9d98 100644 --- a/src/modules/help/helpwindow.h +++ b/src/modules/help/helpwindow.h @@ -36,7 +36,7 @@ class TQTextBrowser; class KviHelpWindow : public KviWindow { Q_OBJECT - TQ_OBJECT + public: KviHelpWindow(KviFrame * lpFrm,const char * name); ~KviHelpWindow(); diff --git a/src/modules/help/index.h b/src/modules/help/index.h index fe41eea..d4fcc73 100755 --- a/src/modules/help/index.h +++ b/src/modules/help/index.h @@ -61,7 +61,7 @@ TQDataStream &operator<<( TQDataStream &s, const Document &l ); class Index : public TQObject { Q_OBJECT - TQ_OBJECT + public: struct Entry { Entry( int d ) { documents.append( Document( d, 1 ) ); } |