diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:56:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:56:33 +0900 |
commit | 22521a5d98abf03cf740ccdd940e682e76b529d7 (patch) | |
tree | a32bf98c8e94a33754d2fe34b6787216805f6977 /plugins | |
parent | 784c049997d8ed3af085108f22a0fee1f42c5107 (diff) | |
download | ktorrent-22521a5d98abf03cf740ccdd940e682e76b529d7.tar.gz ktorrent-22521a5d98abf03cf740ccdd940e682e76b529d7.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins')
55 files changed, 58 insertions, 58 deletions
diff --git a/plugins/infowidget/availabilitychunkbar.h b/plugins/infowidget/availabilitychunkbar.h index 5897591..ce8ba27 100644 --- a/plugins/infowidget/availabilitychunkbar.h +++ b/plugins/infowidget/availabilitychunkbar.h @@ -30,7 +30,7 @@ namespace kt */ class AvailabilityChunkBar : public ChunkBar { - Q_OBJECT + TQ_OBJECT public: AvailabilityChunkBar(TQWidget* parent, const char* name); diff --git a/plugins/infowidget/chunkbar.h b/plugins/infowidget/chunkbar.h index 2c2ecf9..593acfe 100644 --- a/plugins/infowidget/chunkbar.h +++ b/plugins/infowidget/chunkbar.h @@ -49,7 +49,7 @@ namespace kt */ class ChunkBar : public TQFrame { - Q_OBJECT + TQ_OBJECT public: ChunkBar(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/infowidget/chunkdownloadview.h b/plugins/infowidget/chunkdownloadview.h index 070b8ea..b72c07b 100644 --- a/plugins/infowidget/chunkdownloadview.h +++ b/plugins/infowidget/chunkdownloadview.h @@ -45,7 +45,7 @@ namespace kt */ class ChunkDownloadView : public ChunkDownloadViewBase { - Q_OBJECT + TQ_OBJECT TQMap<kt::ChunkDownloadInterface*,ChunkDownloadViewItem*> items; diff --git a/plugins/infowidget/downloadedchunkbar.h b/plugins/infowidget/downloadedchunkbar.h index 1982fc3..fa0fea2 100644 --- a/plugins/infowidget/downloadedchunkbar.h +++ b/plugins/infowidget/downloadedchunkbar.h @@ -29,7 +29,7 @@ namespace kt */ class DownloadedChunkBar : public ChunkBar { - Q_OBJECT + TQ_OBJECT public: DownloadedChunkBar(TQWidget* parent, const char* name); diff --git a/plugins/infowidget/fileview.h b/plugins/infowidget/fileview.h index 01443dd..e42935d 100644 --- a/plugins/infowidget/fileview.h +++ b/plugins/infowidget/fileview.h @@ -34,7 +34,7 @@ namespace kt */ class FileView : public TDEListView { - Q_OBJECT + TQ_OBJECT public: FileView(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/infowidget/floatspinbox.h b/plugins/infowidget/floatspinbox.h index a123382..50c6b0c 100644 --- a/plugins/infowidget/floatspinbox.h +++ b/plugins/infowidget/floatspinbox.h @@ -37,7 +37,7 @@ namespace kt class FloatSpinBox : public TQSpinBox { - Q_OBJECT + TQ_OBJECT public: FloatSpinBox( TQWidget* parent=0, const char* name=0 ); diff --git a/plugins/infowidget/infowidgetplugin.h b/plugins/infowidget/infowidgetplugin.h index 75a7fea..01796ec 100644 --- a/plugins/infowidget/infowidgetplugin.h +++ b/plugins/infowidget/infowidgetplugin.h @@ -41,7 +41,7 @@ namespace kt */ class InfoWidgetPlugin : public Plugin,public ViewListener { - Q_OBJECT + TQ_OBJECT public: InfoWidgetPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/infowidget/iwfiletreeitem.h b/plugins/infowidget/iwfiletreeitem.h index d2eb350..20972fa 100644 --- a/plugins/infowidget/iwfiletreeitem.h +++ b/plugins/infowidget/iwfiletreeitem.h @@ -38,7 +38,7 @@ namespace kt */ class IWFileTreeItem : public TQObject, public kt::FileTreeItem { - Q_OBJECT + TQ_OBJECT double perc_complete; diff --git a/plugins/infowidget/localefloatvalidator.h b/plugins/infowidget/localefloatvalidator.h index a20858f..83be87d 100644 --- a/plugins/infowidget/localefloatvalidator.h +++ b/plugins/infowidget/localefloatvalidator.h @@ -32,7 +32,7 @@ namespace kt{ */ class LocaleFloatValidator : public TQValidator { - Q_OBJECT + TQ_OBJECT public: LocaleFloatValidator( TQObject * parent, const char *name = 0 ); diff --git a/plugins/infowidget/peerview.h b/plugins/infowidget/peerview.h index 9c4289a..b75371d 100644 --- a/plugins/infowidget/peerview.h +++ b/plugins/infowidget/peerview.h @@ -54,7 +54,7 @@ namespace kt */ class PeerView : public TDEListView { - Q_OBJECT + TQ_OBJECT TQMap<kt::PeerInterface*,PeerViewItem*> items; diff --git a/plugins/infowidget/statustab.h b/plugins/infowidget/statustab.h index b5f73dc..d044011 100644 --- a/plugins/infowidget/statustab.h +++ b/plugins/infowidget/statustab.h @@ -29,7 +29,7 @@ namespace kt class StatusTab : public StatusTabBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/infowidget/trackerview.h b/plugins/infowidget/trackerview.h index 2c22eb5..44d8872 100644 --- a/plugins/infowidget/trackerview.h +++ b/plugins/infowidget/trackerview.h @@ -36,7 +36,7 @@ namespace kt */ class TrackerView: public TrackerViewBase { - Q_OBJECT + TQ_OBJECT public: TrackerView(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/ipfilter/convertdialog.h b/plugins/ipfilter/convertdialog.h index 408ff39..cf292a3 100644 --- a/plugins/ipfilter/convertdialog.h +++ b/plugins/ipfilter/convertdialog.h @@ -29,7 +29,7 @@ namespace kt { class ConvertDialog: public ConvertingDlg { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/ipfilter/ipfilterplugin.h b/plugins/ipfilter/ipfilterplugin.h index 251bdcd..2ef114a 100644 --- a/plugins/ipfilter/ipfilterplugin.h +++ b/plugins/ipfilter/ipfilterplugin.h @@ -41,7 +41,7 @@ namespace kt */ class IPFilterPlugin : public Plugin, public kt::IPBlockingInterface { - Q_OBJECT + TQ_OBJECT public: IPFilterPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/logviewer/logprefwidget.h b/plugins/logviewer/logprefwidget.h index edb93f6..4b23949 100644 --- a/plugins/logviewer/logprefwidget.h +++ b/plugins/logviewer/logprefwidget.h @@ -26,7 +26,7 @@ namespace kt { class LogPrefWidget: public LogPrefWidgetBase { - Q_OBJECT + TQ_OBJECT public: LogPrefWidget(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/logviewer/logviewer.h b/plugins/logviewer/logviewer.h index 5fc7933..e8a1476 100644 --- a/plugins/logviewer/logviewer.h +++ b/plugins/logviewer/logviewer.h @@ -31,7 +31,7 @@ namespace kt */ class LogViewer : public KTextBrowser, public LogMonitorInterface { - Q_OBJECT + TQ_OBJECT public: LogViewer(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/logviewer/logviewerplugin.h b/plugins/logviewer/logviewerplugin.h index ba990d6..7742880 100644 --- a/plugins/logviewer/logviewerplugin.h +++ b/plugins/logviewer/logviewerplugin.h @@ -34,7 +34,7 @@ namespace kt */ class LogViewerPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: LogViewerPlugin(TQObject* parent, const char* qt_name, const TQStringList& args); diff --git a/plugins/partfileimport/importdialog.h b/plugins/partfileimport/importdialog.h index 1f1a82a..c422da8 100644 --- a/plugins/partfileimport/importdialog.h +++ b/plugins/partfileimport/importdialog.h @@ -45,7 +45,7 @@ namespace kt class ImportDialog : public ImportDlgBase,public bt::DataCheckerListener { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/partfileimport/partfileimportplugin.h b/plugins/partfileimport/partfileimportplugin.h index 6753f07..7525bec 100644 --- a/plugins/partfileimport/partfileimportplugin.h +++ b/plugins/partfileimport/partfileimportplugin.h @@ -32,7 +32,7 @@ namespace kt */ class PartFileImportPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: PartFileImportPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/rssfeed/rss/image.h b/plugins/rssfeed/rss/image.h index adbb800..19a8103 100644 --- a/plugins/rssfeed/rss/image.h +++ b/plugins/rssfeed/rss/image.h @@ -33,7 +33,7 @@ namespace RSS */ class Image : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/plugins/rssfeed/rss/loader.h b/plugins/rssfeed/rss/loader.h index 3a48e49..6727e24 100644 --- a/plugins/rssfeed/rss/loader.h +++ b/plugins/rssfeed/rss/loader.h @@ -34,7 +34,7 @@ namespace RSS */ class DataRetriever : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** @@ -89,7 +89,7 @@ namespace RSS */ class FileRetriever : public DataRetriever { - Q_OBJECT + TQ_OBJECT public: /** @@ -159,7 +159,7 @@ namespace RSS */ class OutputRetriever : public DataRetriever { - Q_OBJECT + TQ_OBJECT public: /** @@ -254,7 +254,7 @@ namespace RSS */ class Loader : public TQObject { - Q_OBJECT + TQ_OBJECT friend class someClassWhichDoesNotExist; public: diff --git a/plugins/rssfeed/rss/testlibrss.h b/plugins/rssfeed/rss/testlibrss.h index 222943a..2a918a5 100644 --- a/plugins/rssfeed/rss/testlibrss.h +++ b/plugins/rssfeed/rss/testlibrss.h @@ -14,7 +14,7 @@ using RSS::Status; class Tester : public TQObject { - Q_OBJECT + TQ_OBJECT public: void test( const TQString &url ); diff --git a/plugins/rssfeed/rssfeed.h b/plugins/rssfeed/rssfeed.h index 46bd837..214177b 100644 --- a/plugins/rssfeed/rssfeed.h +++ b/plugins/rssfeed/rssfeed.h @@ -47,7 +47,7 @@ namespace kt class RssFeed : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/rssfeed/rssfeedmanager.h b/plugins/rssfeed/rssfeedmanager.h index 939c460..fd6cb57 100644 --- a/plugins/rssfeed/rssfeedmanager.h +++ b/plugins/rssfeed/rssfeedmanager.h @@ -46,7 +46,7 @@ namespace kt */ class RssFeedManager : public RssFeedWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/rssfeed/rssfeedplugin.h b/plugins/rssfeed/rssfeedplugin.h index 5014908..c268097 100644 --- a/plugins/rssfeed/rssfeedplugin.h +++ b/plugins/rssfeed/rssfeedplugin.h @@ -36,7 +36,7 @@ namespace kt */ class RssFeedPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: RssFeedPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/rssfeed/rssfilter.h b/plugins/rssfeed/rssfilter.h index d557a78..eba0a21 100644 --- a/plugins/rssfeed/rssfilter.h +++ b/plugins/rssfeed/rssfilter.h @@ -68,7 +68,7 @@ namespace kt class RssFilter : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/rssfeed/rsslinkdownloader.h b/plugins/rssfeed/rsslinkdownloader.h index a496af7..486eed8 100644 --- a/plugins/rssfeed/rsslinkdownloader.h +++ b/plugins/rssfeed/rsslinkdownloader.h @@ -46,7 +46,7 @@ namespace kt class RssLinkDownloader : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/scanfolder/scanfolder.h b/plugins/scanfolder/scanfolder.h index 680f74c..58fbd04 100644 --- a/plugins/scanfolder/scanfolder.h +++ b/plugins/scanfolder/scanfolder.h @@ -55,7 +55,7 @@ namespace kt */ class ScanFolder : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/scanfolder/scanfolderplugin.h b/plugins/scanfolder/scanfolderplugin.h index 527b36d..3ea18ce 100644 --- a/plugins/scanfolder/scanfolderplugin.h +++ b/plugins/scanfolder/scanfolderplugin.h @@ -37,7 +37,7 @@ namespace kt */ class ScanFolderPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: ScanFolderPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/scanfolder/scanfolderprefpagewidget.h b/plugins/scanfolder/scanfolderprefpagewidget.h index 6468d9d..963ca40 100644 --- a/plugins/scanfolder/scanfolderprefpagewidget.h +++ b/plugins/scanfolder/scanfolderprefpagewidget.h @@ -26,7 +26,7 @@ namespace kt { class ScanFolderPrefPageWidget: public SfPrefPageWidgetBase { - Q_OBJECT + TQ_OBJECT public: ScanFolderPrefPageWidget(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/scheduler/bwsprefpagewidget.h b/plugins/scheduler/bwsprefpagewidget.h index a2e68e0..d87a2bc 100644 --- a/plugins/scheduler/bwsprefpagewidget.h +++ b/plugins/scheduler/bwsprefpagewidget.h @@ -33,7 +33,7 @@ namespace kt */ class BWSPrefPageWidget : public BWSPage { - Q_OBJECT + TQ_OBJECT public: BWSPrefPageWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/plugins/scheduler/bwswidget.h b/plugins/scheduler/bwswidget.h index 79d5ccd..9cb36ae 100644 --- a/plugins/scheduler/bwswidget.h +++ b/plugins/scheduler/bwswidget.h @@ -43,7 +43,7 @@ namespace kt */ class BWSWidget : public TQTable { - Q_OBJECT + TQ_OBJECT public: BWSWidget(TQWidget* parent = 0, const char* name = 0, bool useColors = true); diff --git a/plugins/scheduler/schedulerplugin.h b/plugins/scheduler/schedulerplugin.h index 6fb9733..9143d99 100644 --- a/plugins/scheduler/schedulerplugin.h +++ b/plugins/scheduler/schedulerplugin.h @@ -42,7 +42,7 @@ namespace kt */ class SchedulerPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: SchedulerPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/scheduler/schedulerprefpagewidget.h b/plugins/scheduler/schedulerprefpagewidget.h index 271586f..5a3c5c3 100644 --- a/plugins/scheduler/schedulerprefpagewidget.h +++ b/plugins/scheduler/schedulerprefpagewidget.h @@ -31,7 +31,7 @@ namespace kt */ class SchedulerPrefPageWidget : public SchedulerPage { - Q_OBJECT + TQ_OBJECT public: SchedulerPrefPageWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/plugins/search/htmlpart.h b/plugins/search/htmlpart.h index 091c82f..5ed8f19 100644 --- a/plugins/search/htmlpart.h +++ b/plugins/search/htmlpart.h @@ -36,7 +36,7 @@ namespace kt */ class HTMLPart : public TDEHTMLPart { - Q_OBJECT + TQ_OBJECT public: HTMLPart(TQWidget *parent = 0); diff --git a/plugins/search/searchplugin.h b/plugins/search/searchplugin.h index 6d6f2dd..f7f41e7 100644 --- a/plugins/search/searchplugin.h +++ b/plugins/search/searchplugin.h @@ -36,7 +36,7 @@ namespace kt */ class SearchPlugin : public Plugin, public kt::CloseTabListener { - Q_OBJECT + TQ_OBJECT public: SearchPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/search/searchprefpage.h b/plugins/search/searchprefpage.h index fb2565a..add87a9 100644 --- a/plugins/search/searchprefpage.h +++ b/plugins/search/searchprefpage.h @@ -33,7 +33,7 @@ namespace kt class SearchPrefPageWidget : public SEPreferences { - Q_OBJECT + TQ_OBJECT public: SearchPrefPageWidget(TQWidget *parent = 0); diff --git a/plugins/search/searchtab.h b/plugins/search/searchtab.h index 2f63ab1..35fecfb 100644 --- a/plugins/search/searchtab.h +++ b/plugins/search/searchtab.h @@ -35,7 +35,7 @@ namespace kt */ class SearchTab : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/search/searchwidget.h b/plugins/search/searchwidget.h index 9d42b93..e556f10 100644 --- a/plugins/search/searchwidget.h +++ b/plugins/search/searchwidget.h @@ -47,7 +47,7 @@ namespace kt */ class SearchWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: SearchWidget(SearchPlugin* sp); diff --git a/plugins/stats/ChartDrawer.h b/plugins/stats/ChartDrawer.h index d7211b0..83a4e32 100644 --- a/plugins/stats/ChartDrawer.h +++ b/plugins/stats/ChartDrawer.h @@ -48,7 +48,7 @@ namespace kt { */ class ChartDrawer : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/stats/StatsCon.h b/plugins/stats/StatsCon.h index 53371a2..00deae5 100644 --- a/plugins/stats/StatsCon.h +++ b/plugins/stats/StatsCon.h @@ -34,7 +34,7 @@ namespace kt { class StatsCon : public StatsConWgt { - Q_OBJECT + TQ_OBJECT private: ///Layout of peers connections diff --git a/plugins/stats/StatsPluginPrefs.h b/plugins/stats/StatsPluginPrefs.h index 43c524d..047b921 100644 --- a/plugins/stats/StatsPluginPrefs.h +++ b/plugins/stats/StatsPluginPrefs.h @@ -42,7 +42,7 @@ namespace kt { */ class StatsPluginPrefs : public TQObject, public PrefPageInterface { - Q_OBJECT + TQ_OBJECT private: diff --git a/plugins/stats/StatsSpd.h b/plugins/stats/StatsSpd.h index 4f75161..5ec2578 100644 --- a/plugins/stats/StatsSpd.h +++ b/plugins/stats/StatsSpd.h @@ -38,7 +38,7 @@ namespace kt { */ class StatsSpd : public StatsSpdWgt { - Q_OBJECT + TQ_OBJECT private: diff --git a/plugins/stats/statsplugin.h b/plugins/stats/statsplugin.h index 8cdf345..4abb9eb 100644 --- a/plugins/stats/statsplugin.h +++ b/plugins/stats/statsplugin.h @@ -51,7 +51,7 @@ namespace kt { */ class StatsPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT private: diff --git a/plugins/upnp/upnpmcastsocket.h b/plugins/upnp/upnpmcastsocket.h index f072531..fbd63df 100644 --- a/plugins/upnp/upnpmcastsocket.h +++ b/plugins/upnp/upnpmcastsocket.h @@ -39,7 +39,7 @@ namespace kt */ class UPnPMCastSocket : public KNetwork::KDatagramSocket { - Q_OBJECT + TQ_OBJECT public: UPnPMCastSocket(bool verbose = false); diff --git a/plugins/upnp/upnpplugin.h b/plugins/upnp/upnpplugin.h index a81a51c..5f4700f 100644 --- a/plugins/upnp/upnpplugin.h +++ b/plugins/upnp/upnpplugin.h @@ -32,7 +32,7 @@ namespace kt */ class UPnPPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: UPnPPlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/upnp/upnpprefwidget.h b/plugins/upnp/upnpprefwidget.h index 272e0a2..bcd9ac1 100644 --- a/plugins/upnp/upnpprefwidget.h +++ b/plugins/upnp/upnpprefwidget.h @@ -40,7 +40,7 @@ namespace kt */ class UPnPPrefWidget : public UPnPWidget,public net::PortListener { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/upnp/upnprouter.h b/plugins/upnp/upnprouter.h index 081d958..6dbf828 100644 --- a/plugins/upnp/upnprouter.h +++ b/plugins/upnp/upnprouter.h @@ -104,7 +104,7 @@ namespace kt */ class UPnPRouter : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/plugins/webinterface/httpclienthandler.h b/plugins/webinterface/httpclienthandler.h index 01d3913..8afbc39 100644 --- a/plugins/webinterface/httpclienthandler.h +++ b/plugins/webinterface/httpclienthandler.h @@ -40,7 +40,7 @@ namespace kt */ class HttpClientHandler : public TQObject { - Q_OBJECT + TQ_OBJECT enum State { diff --git a/plugins/webinterface/httpserver.h b/plugins/webinterface/httpserver.h index a5eaa3b..33eeddf 100644 --- a/plugins/webinterface/httpserver.h +++ b/plugins/webinterface/httpserver.h @@ -64,7 +64,7 @@ namespace kt class HttpServer : public TQServerSocket { - Q_OBJECT + TQ_OBJECT public: HttpServer(CoreInterface *core, int port); diff --git a/plugins/webinterface/php_handler.h b/plugins/webinterface/php_handler.h index 37a87e6..e3cdb86 100644 --- a/plugins/webinterface/php_handler.h +++ b/plugins/webinterface/php_handler.h @@ -31,7 +31,7 @@ namespace kt class PhpHandler : public TQProcess { - Q_OBJECT + TQ_OBJECT public: PhpHandler(const TQString & php_exe,PhpInterface *php); diff --git a/plugins/webinterface/webinterfaceplugin.h b/plugins/webinterface/webinterfaceplugin.h index 260aa00..0edb5ed 100644 --- a/plugins/webinterface/webinterfaceplugin.h +++ b/plugins/webinterface/webinterfaceplugin.h @@ -32,7 +32,7 @@ namespace kt class WebInterfacePlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: WebInterfacePlugin(TQObject* parent, const char* name, const TQStringList& args); diff --git a/plugins/webinterface/webinterfaceprefwidget.h b/plugins/webinterface/webinterfaceprefwidget.h index 3d3b5e4..0f227ee 100644 --- a/plugins/webinterface/webinterfaceprefwidget.h +++ b/plugins/webinterface/webinterfaceprefwidget.h @@ -27,7 +27,7 @@ namespace kt class WebInterfacePrefWidget:public WebInterfacePreference { - Q_OBJECT + TQ_OBJECT public: WebInterfacePrefWidget(TQWidget *parent = 0, const char *name = 0); diff --git a/plugins/zeroconf/avahiservice.h b/plugins/zeroconf/avahiservice.h index 02dde11..f85062f 100644 --- a/plugins/zeroconf/avahiservice.h +++ b/plugins/zeroconf/avahiservice.h @@ -44,7 +44,7 @@ namespace kt class AvahiService : public kt::PeerSource { - Q_OBJECT + TQ_OBJECT public: AvahiService(const bt::PeerID&, bt::Uint16, const bt::SHA1Hash&); diff --git a/plugins/zeroconf/zeroconfplugin.h b/plugins/zeroconf/zeroconfplugin.h index de91c53..5fabfab 100644 --- a/plugins/zeroconf/zeroconfplugin.h +++ b/plugins/zeroconf/zeroconfplugin.h @@ -35,7 +35,7 @@ namespace kt */ class ZeroConfPlugin : public Plugin { - Q_OBJECT + TQ_OBJECT public: ZeroConfPlugin(TQObject* parent, const char* name, const TQStringList& args); |