summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:56:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:56:33 +0900
commit22521a5d98abf03cf740ccdd940e682e76b529d7 (patch)
treea32bf98c8e94a33754d2fe34b6787216805f6977 /apps
parent784c049997d8ed3af085108f22a0fee1f42c5107 (diff)
downloadktorrent-22521a5d98abf03cf740ccdd940e682e76b529d7.tar.gz
ktorrent-22521a5d98abf03cf740ccdd940e682e76b529d7.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'apps')
-rw-r--r--apps/ktorrent/addpeerwidget.h4
-rw-r--r--apps/ktorrent/fileselectdlg.h2
-rw-r--r--apps/ktorrent/filterbar.h2
-rw-r--r--apps/ktorrent/groups/groupview.h2
-rw-r--r--apps/ktorrent/groups/torrentdrag.h2
-rw-r--r--apps/ktorrent/ipfilterwidget.h2
-rw-r--r--apps/ktorrent/ktorrent.h2
-rw-r--r--apps/ktorrent/ktorrentapp.h2
-rw-r--r--apps/ktorrent/ktorrentcore.h2
-rw-r--r--apps/ktorrent/ktorrentdcop.h2
-rw-r--r--apps/ktorrent/ktorrentview.h2
-rw-r--r--apps/ktorrent/ktorrentviewmenu.h2
-rw-r--r--apps/ktorrent/newui/button.h2
-rw-r--r--apps/ktorrent/newui/buttonbar.h2
-rw-r--r--apps/ktorrent/newui/ddockwindow.h2
-rw-r--r--apps/ktorrent/newui/dmainwindow.h2
-rw-r--r--apps/ktorrent/newui/docksplitter.h2
-rw-r--r--apps/ktorrent/newui/dtabwidget.h2
-rw-r--r--apps/ktorrent/pastedialog.h2
-rw-r--r--apps/ktorrent/pref.h6
-rw-r--r--apps/ktorrent/queuedialog.h2
-rw-r--r--apps/ktorrent/scandialog.h2
-rw-r--r--apps/ktorrent/speedlimitsdlg.h2
-rw-r--r--apps/ktorrent/torrentcreatordlg.h2
-rw-r--r--apps/ktorrent/trayhoverpopup.h2
-rw-r--r--apps/ktorrent/trayicon.h4
-rw-r--r--apps/ktorrent/viewmanager.h2
-rw-r--r--apps/ktupnptest/upnptestapp.h2
28 files changed, 32 insertions, 32 deletions
diff --git a/apps/ktorrent/addpeerwidget.h b/apps/ktorrent/addpeerwidget.h
index 4ca8db8..ed394a8 100644
--- a/apps/ktorrent/addpeerwidget.h
+++ b/apps/ktorrent/addpeerwidget.h
@@ -43,7 +43,7 @@ namespace bt
*/
class ManualPeerSource: public kt::PeerSource
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -78,7 +78,7 @@ class ManualPeerSource: public kt::PeerSource
*/
class AddPeerWidget: public AddPeerWidgetBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
AddPeerWidget(kt::TorrentInterface* tc, TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/fileselectdlg.h b/apps/ktorrent/fileselectdlg.h
index 9a67482..3a941c2 100644
--- a/apps/ktorrent/fileselectdlg.h
+++ b/apps/ktorrent/fileselectdlg.h
@@ -42,7 +42,7 @@ namespace kt
class FileSelectDlg : public FileSelectDlgBase, public kt::FileTreeRootListener
{
- Q_OBJECT
+ TQ_OBJECT
kt::TorrentInterface* tc;
diff --git a/apps/ktorrent/filterbar.h b/apps/ktorrent/filterbar.h
index 5164587..151fa73 100644
--- a/apps/ktorrent/filterbar.h
+++ b/apps/ktorrent/filterbar.h
@@ -41,7 +41,7 @@ namespace kt
*/
class FilterBar : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/apps/ktorrent/groups/groupview.h b/apps/ktorrent/groups/groupview.h
index 5b5d053..00a47ed 100644
--- a/apps/ktorrent/groups/groupview.h
+++ b/apps/ktorrent/groups/groupview.h
@@ -52,7 +52,7 @@ namespace kt
*/
class GroupView : public TDEListView
{
- Q_OBJECT
+ TQ_OBJECT
public:
GroupView(ViewManager* view,TDEActionCollection* col,TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/groups/torrentdrag.h b/apps/ktorrent/groups/torrentdrag.h
index b7eeebd..6943d18 100644
--- a/apps/ktorrent/groups/torrentdrag.h
+++ b/apps/ktorrent/groups/torrentdrag.h
@@ -31,7 +31,7 @@ namespace kt
*/
class TorrentDrag : public TQStoredDrag
{
- Q_OBJECT
+ TQ_OBJECT
public:
TorrentDrag(TQWidget* src,const char *name = 0);
diff --git a/apps/ktorrent/ipfilterwidget.h b/apps/ktorrent/ipfilterwidget.h
index 8863b1a..d8a49e1 100644
--- a/apps/ktorrent/ipfilterwidget.h
+++ b/apps/ktorrent/ipfilterwidget.h
@@ -29,7 +29,7 @@
*/
class IPFilterWidget: public BlacklistWidgetBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
IPFilterWidget(TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/ktorrent.h b/apps/ktorrent/ktorrent.h
index 7297ac2..6669443 100644
--- a/apps/ktorrent/ktorrent.h
+++ b/apps/ktorrent/ktorrent.h
@@ -65,7 +65,7 @@ namespace kt
*/
class KTorrent : public DMainWindow, public kt::GUIInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
diff --git a/apps/ktorrent/ktorrentapp.h b/apps/ktorrent/ktorrentapp.h
index 5e6d300..753e0bd 100644
--- a/apps/ktorrent/ktorrentapp.h
+++ b/apps/ktorrent/ktorrentapp.h
@@ -26,7 +26,7 @@
class KTorrentApp : public KUniqueApplication
{
- Q_OBJECT
+ TQ_OBJECT
public:
KTorrentApp();
diff --git a/apps/ktorrent/ktorrentcore.h b/apps/ktorrent/ktorrentcore.h
index 8e25653..4c79ad5 100644
--- a/apps/ktorrent/ktorrentcore.h
+++ b/apps/ktorrent/ktorrentcore.h
@@ -62,7 +62,7 @@ class KProgress;
*/
class KTorrentCore : public kt::CoreInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
KTorrentCore(kt::GUIInterface* gui);
diff --git a/apps/ktorrent/ktorrentdcop.h b/apps/ktorrent/ktorrentdcop.h
index 2e0f7e0..14f30ba 100644
--- a/apps/ktorrent/ktorrentdcop.h
+++ b/apps/ktorrent/ktorrentdcop.h
@@ -29,7 +29,7 @@ class KTorrent;
*/
class KTorrentDCOP : public TQObject,virtual public DCOPInterface
{
- Q_OBJECT
+ TQ_OBJECT
KTorrent* app;
public:
diff --git a/apps/ktorrent/ktorrentview.h b/apps/ktorrent/ktorrentview.h
index a388c87..bf52598 100644
--- a/apps/ktorrent/ktorrentview.h
+++ b/apps/ktorrent/ktorrentview.h
@@ -65,7 +65,7 @@ private:
*/
class KTorrentView : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
enum ActionEnableFlags
diff --git a/apps/ktorrent/ktorrentviewmenu.h b/apps/ktorrent/ktorrentviewmenu.h
index fd850a6..75c5112 100644
--- a/apps/ktorrent/ktorrentviewmenu.h
+++ b/apps/ktorrent/ktorrentviewmenu.h
@@ -29,7 +29,7 @@ class KTorrentView;
*/
class KTorrentViewMenu : public TDEPopupMenu
{
- Q_OBJECT
+ TQ_OBJECT
public:
KTorrentViewMenu(KTorrentView *parent, const char *name = 0 );
diff --git a/apps/ktorrent/newui/button.h b/apps/ktorrent/newui/button.h
index 00a31de..23c45c1 100644
--- a/apps/ktorrent/newui/button.h
+++ b/apps/ktorrent/newui/button.h
@@ -38,7 +38,7 @@ A TQPushButton derivative with a size of a TQToolBar. Button can be rotated
(placed onto different places in ideal mode).
*/
class Button : public TQPushButton {
- Q_OBJECT
+ TQ_OBJECT
public:
Button(ButtonBar *parent, const TQString text, const TQIconSet &icon = TQIconSet(),
diff --git a/apps/ktorrent/newui/buttonbar.h b/apps/ktorrent/newui/buttonbar.h
index 97e162d..3f23957 100644
--- a/apps/ktorrent/newui/buttonbar.h
+++ b/apps/ktorrent/newui/buttonbar.h
@@ -52,7 +52,7 @@ Looks like a toolbar but has another behaviour. It is suitable for
placing on the left(right, bottom, top) corners of a window as a bar with slider.
*/
class ButtonBar : public TQWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
ButtonBar(Place place, ButtonMode mode = IconsAndText,
diff --git a/apps/ktorrent/newui/ddockwindow.h b/apps/ktorrent/newui/ddockwindow.h
index 3012e02..84b5163 100644
--- a/apps/ktorrent/newui/ddockwindow.h
+++ b/apps/ktorrent/newui/ddockwindow.h
@@ -39,7 +39,7 @@ namespace Ideal {
}
class DDockWindow : public TQDockWindow {
- Q_OBJECT
+ TQ_OBJECT
public:
enum Position { Bottom, Left, Right };
diff --git a/apps/ktorrent/newui/dmainwindow.h b/apps/ktorrent/newui/dmainwindow.h
index ab98207..7483971 100644
--- a/apps/ktorrent/newui/dmainwindow.h
+++ b/apps/ktorrent/newui/dmainwindow.h
@@ -32,7 +32,7 @@ namespace Ideal {
/**Main window which provides simplified IDEA mode.*/
class DMainWindow: public KParts::MainWindow {
- Q_OBJECT
+ TQ_OBJECT
public:
DMainWindow(TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/newui/docksplitter.h b/apps/ktorrent/newui/docksplitter.h
index c167a5b..f1be737 100644
--- a/apps/ktorrent/newui/docksplitter.h
+++ b/apps/ktorrent/newui/docksplitter.h
@@ -31,7 +31,7 @@ class DockWidget;
@short Splitter for docks
*/
class DockSplitter: public TQSplitter {
- Q_OBJECT
+ TQ_OBJECT
public:
DockSplitter(Qt::Orientation orientation, TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/newui/dtabwidget.h b/apps/ktorrent/newui/dtabwidget.h
index f312554..529a42d 100644
--- a/apps/ktorrent/newui/dtabwidget.h
+++ b/apps/ktorrent/newui/dtabwidget.h
@@ -25,7 +25,7 @@
class TQToolButton;
class DTabWidget: public KTabWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
DTabWidget(TQWidget *parent=0, const char *name=0);
diff --git a/apps/ktorrent/pastedialog.h b/apps/ktorrent/pastedialog.h
index c40cf43..cb31cd2 100644
--- a/apps/ktorrent/pastedialog.h
+++ b/apps/ktorrent/pastedialog.h
@@ -30,7 +30,7 @@ class KTorrentCore;
**/
class PasteDialog: public PasteDlgBase
{
- Q_OBJECT
+ TQ_OBJECT
public slots:
virtual void btnOK_clicked();
diff --git a/apps/ktorrent/pref.h b/apps/ktorrent/pref.h
index e1108d5..f9a4331 100644
--- a/apps/ktorrent/pref.h
+++ b/apps/ktorrent/pref.h
@@ -50,7 +50,7 @@ public:
class GeneralPrefPage : public TQObject,public kt::PrefPageInterface
{
- Q_OBJECT
+ TQ_OBJECT
GeneralPref* gp;
public:
@@ -71,7 +71,7 @@ private slots:
class AdvancedPrefPage : public TQObject,public kt::PrefPageInterface
{
- Q_OBJECT
+ TQ_OBJECT
AdvancedPref* ap;
@@ -94,7 +94,7 @@ private slots:
class KTorrentPreferences : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KTorrentPreferences(KTorrent & ktor);
diff --git a/apps/ktorrent/queuedialog.h b/apps/ktorrent/queuedialog.h
index a6900e4..ae8629c 100644
--- a/apps/ktorrent/queuedialog.h
+++ b/apps/ktorrent/queuedialog.h
@@ -50,7 +50,7 @@ class QueueItem: public TQListViewItem
class QueueDialog: public QueueDlg
{
- Q_OBJECT
+ TQ_OBJECT
public:
QueueDialog(bt::QueueManager* qm, TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/scandialog.h b/apps/ktorrent/scandialog.h
index 62a3d7b..b22e1b8 100644
--- a/apps/ktorrent/scandialog.h
+++ b/apps/ktorrent/scandialog.h
@@ -36,7 +36,7 @@ class KTorrentCore;
class ScanDialog : public ScanDlgBase, public bt::DataCheckerListener
{
- Q_OBJECT
+ TQ_OBJECT
public:
ScanDialog(KTorrentCore* core,bool auto_import,TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = WDestructiveClose );
diff --git a/apps/ktorrent/speedlimitsdlg.h b/apps/ktorrent/speedlimitsdlg.h
index e1b8b60..01d3e31 100644
--- a/apps/ktorrent/speedlimitsdlg.h
+++ b/apps/ktorrent/speedlimitsdlg.h
@@ -30,7 +30,7 @@ namespace kt
class SpeedLimitsDlg : public SpeedLimitsDlgBase
{
- Q_OBJECT
+ TQ_OBJECT
kt::TorrentInterface* tor;
diff --git a/apps/ktorrent/torrentcreatordlg.h b/apps/ktorrent/torrentcreatordlg.h
index b19c2fb..76ce111 100644
--- a/apps/ktorrent/torrentcreatordlg.h
+++ b/apps/ktorrent/torrentcreatordlg.h
@@ -18,7 +18,7 @@ class KTorrentCore;
class TorrentCreatorDlg: public TorrentCreatorDlgBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
TorrentCreatorDlg(KTorrentCore* core,TQWidget *parent = 0, const char *name = 0);
diff --git a/apps/ktorrent/trayhoverpopup.h b/apps/ktorrent/trayhoverpopup.h
index f052424..c3cf9fb 100644
--- a/apps/ktorrent/trayhoverpopup.h
+++ b/apps/ktorrent/trayhoverpopup.h
@@ -33,7 +33,7 @@ class TQPixmap;
*/
class TrayHoverPopup : public KPassivePopup
{
- Q_OBJECT
+ TQ_OBJECT
public:
TrayHoverPopup(const TQPixmap & pix,TQWidget *parent = 0, const char *name = 0 );
diff --git a/apps/ktorrent/trayicon.h b/apps/ktorrent/trayicon.h
index a277f79..f31767d 100644
--- a/apps/ktorrent/trayicon.h
+++ b/apps/ktorrent/trayicon.h
@@ -49,7 +49,7 @@ struct TrayStats
*/
class TrayIcon : public KSystemTray
{
- Q_OBJECT
+ TQ_OBJECT
public:
TrayIcon(KTorrentCore* tc, TQWidget *parent = 0, const char *name = 0);
@@ -123,7 +123,7 @@ private:
class SetMaxRate : public TDEPopupMenu
{
- Q_OBJECT
+ TQ_OBJECT
public:
SetMaxRate(KTorrentCore* tc, int t, TQWidget *parent=0, const char *name=0); // type: 0 Upload; 1 Download
diff --git a/apps/ktorrent/viewmanager.h b/apps/ktorrent/viewmanager.h
index 67025aa..e402a92 100644
--- a/apps/ktorrent/viewmanager.h
+++ b/apps/ktorrent/viewmanager.h
@@ -34,7 +34,7 @@ class KTorrent;
*/
class ViewManager : public TQObject, public kt::CloseTabListener
{
- Q_OBJECT
+ TQ_OBJECT
public:
ViewManager(TQObject *parent = 0, const char *name = 0);
diff --git a/apps/ktupnptest/upnptestapp.h b/apps/ktupnptest/upnptestapp.h
index 17aae8d..7c5ac98 100644
--- a/apps/ktupnptest/upnptestapp.h
+++ b/apps/ktupnptest/upnptestapp.h
@@ -37,7 +37,7 @@ using kt::UPnPRouter;
*/
class UPnPTestApp : public TDEMainWindow, public kt::LogMonitorInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
UPnPTestApp(TQWidget *parent = 0, const char *name = 0);