diff --git a/KMFSysTray/details.h b/KMFSysTray/details.h index 963b278..76305db 100644 --- a/KMFSysTray/details.h +++ b/KMFSysTray/details.h @@ -25,7 +25,7 @@ class Details : public DetailsDesigner { Q_OBJECT - TQ_OBJECT + public: Details( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/KMFSysTray/kmfiptwatcher.h b/KMFSysTray/kmfiptwatcher.h index 22b3a34..11ce623 100644 --- a/KMFSysTray/kmfiptwatcher.h +++ b/KMFSysTray/kmfiptwatcher.h @@ -36,7 +36,7 @@ class IPTRuleOption; class KMFIPTWatcher : public TQObject { Q_OBJECT - TQ_OBJECT + public: KMFIPTWatcher(TQObject *parent = 0, const char *name = 0); diff --git a/KMFSysTray/kmfsystray.h b/KMFSysTray/kmfsystray.h index 7130a8e..c0b4e63 100644 --- a/KMFSysTray/kmfsystray.h +++ b/KMFSysTray/kmfsystray.h @@ -42,7 +42,7 @@ class KMFIPTDoc; class KMFSysTray : public KSystemTray, public DCOPObject { Q_OBJECT - TQ_OBJECT + public: KMFSysTray( TQWidget * ); diff --git a/KMFSysTray/mainwidget.h b/KMFSysTray/mainwidget.h index 92329ef..b1976ec 100644 --- a/KMFSysTray/mainwidget.h +++ b/KMFSysTray/mainwidget.h @@ -29,7 +29,7 @@ class Details; class MainWidget : public MainWidgetDesigner { Q_OBJECT - TQ_OBJECT + public: MainWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/compilers/iptables/kmfiptablescompiler.h b/kmyfirewall/compilers/iptables/kmfiptablescompiler.h index e2d1d5d..0f8a4bd 100644 --- a/kmyfirewall/compilers/iptables/kmfiptablescompiler.h +++ b/kmyfirewall/compilers/iptables/kmfiptablescompiler.h @@ -43,7 +43,7 @@ class KMFErrorHandler; class KMFIPTablesCompiler : public KMFPlugin, public virtual KMFCompilerInterface { Q_OBJECT - TQ_OBJECT + public: KMFIPTablesCompiler( TQObject* parent, const char* name ); ~KMFIPTablesCompiler(); @@ -76,7 +76,7 @@ private: class KMFIPTablesCompilerFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFIPTablesCompilerFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFIPTablesCompilerFactory() { diff --git a/kmyfirewall/compilers/pf/kmfpfcompiler.h b/kmyfirewall/compilers/pf/kmfpfcompiler.h index 0ce4615..9df8fb2 100644 --- a/kmyfirewall/compilers/pf/kmfpfcompiler.h +++ b/kmyfirewall/compilers/pf/kmfpfcompiler.h @@ -45,7 +45,7 @@ class IPTChain; class KMFPFCompiler : public KMFPlugin, public virtual KMFCompilerInterface { Q_OBJECT - TQ_OBJECT + public: KMFPFCompiler( TQObject* parent, const char* name ); ~KMFPFCompiler(); @@ -115,7 +115,7 @@ private slots: class KMFPFCompilerFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFPFCompilerFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFPFCompilerFactory() { diff --git a/kmyfirewall/core/kmfdoc.h b/kmyfirewall/core/kmfdoc.h index ad60aa3..9c2a24d 100644 --- a/kmyfirewall/core/kmfdoc.h +++ b/kmyfirewall/core/kmfdoc.h @@ -55,7 +55,7 @@ class KMFTarget; class KDE_EXPORT KMFDoc : public NetfilterObject { Q_OBJECT - TQ_OBJECT + public: KMFDoc( NetfilterObject* parent, const char* name ); virtual ~KMFDoc(); diff --git a/kmyfirewall/core/kmfnethost.h b/kmyfirewall/core/kmfnethost.h index 8181f23..4665d99 100644 --- a/kmyfirewall/core/kmfnethost.h +++ b/kmyfirewall/core/kmfnethost.h @@ -55,7 +55,7 @@ class KMFNetwork; class KDE_EXPORT KMFNetHost : public KMFTarget { Q_OBJECT - TQ_OBJECT + public: KMFNetHost( NetfilterObject *parent, const char* name, const TQString& Hostname, KMFNetwork* net ); virtual ~KMFNetHost(); diff --git a/kmyfirewall/core/kmfnetzone.h b/kmyfirewall/core/kmfnetzone.h index 8b3fed9..5fd8757 100644 --- a/kmyfirewall/core/kmfnetzone.h +++ b/kmyfirewall/core/kmfnetzone.h @@ -51,7 +51,7 @@ class KMFNetwork; //############ KMFNetZone ############# class KDE_EXPORT KMFNetZone : public NetfilterObject { Q_OBJECT - TQ_OBJECT + public: KMFNetZone( NetfilterObject *parent, const char* objectname, const TQString& name ); diff --git a/kmyfirewall/core/kmfprotocolcategory.h b/kmyfirewall/core/kmfprotocolcategory.h index 7f23c42..536c0df 100644 --- a/kmyfirewall/core/kmfprotocolcategory.h +++ b/kmyfirewall/core/kmfprotocolcategory.h @@ -37,7 +37,7 @@ class KMFProtocol; class KDE_EXPORT KMFProtocolCategory : public NetfilterObject { Q_OBJECT - TQ_OBJECT + public: static KMFProtocolCategory* createCategory( const TQString& name ); diff --git a/kmyfirewall/core/kmfprotocollibrary.h b/kmyfirewall/core/kmfprotocollibrary.h index ccbd9ce..5ae1c5c 100644 --- a/kmyfirewall/core/kmfprotocollibrary.h +++ b/kmyfirewall/core/kmfprotocollibrary.h @@ -28,7 +28,7 @@ class KMFProtocolCategory; */ class KMFProtocolLibrary : public TQObject { Q_OBJECT - TQ_OBJECT + /** Static Stuff **/ public: static KMFProtocolLibrary* instance(); diff --git a/kmyfirewall/core/kmfprotocolusage.h b/kmyfirewall/core/kmfprotocolusage.h index 324c222..09d09a2 100644 --- a/kmyfirewall/core/kmfprotocolusage.h +++ b/kmyfirewall/core/kmfprotocolusage.h @@ -36,7 +36,7 @@ namespace KMF { class KMFProtocolUsage : public NetfilterObject { friend class KMFProtocol; Q_OBJECT - TQ_OBJECT + public: ~KMFProtocolUsage(); diff --git a/kmyfirewall/core/kmftarget.h b/kmyfirewall/core/kmftarget.h index e0fe3fd..9a87fba 100644 --- a/kmyfirewall/core/kmftarget.h +++ b/kmyfirewall/core/kmftarget.h @@ -46,7 +46,7 @@ class KMFCompilerInterface; class KDE_EXPORT KMFTarget : public NetfilterObject { Q_OBJECT - TQ_OBJECT + public: KMFTarget( NetfilterObject *parent, const char* name, const TQString& targetName, KMFNetwork* net ); diff --git a/kmyfirewall/core/kmfundoengine.h b/kmyfirewall/core/kmfundoengine.h index 29f6351..fafa398 100644 --- a/kmyfirewall/core/kmfundoengine.h +++ b/kmyfirewall/core/kmfundoengine.h @@ -36,7 +36,7 @@ class KMFNetwork; class KMFUndoEngine : public TQObject { Q_OBJECT - TQ_OBJECT + friend class KMFTransaction; friend class KMFNetwork; diff --git a/kmyfirewall/core/kprocesswrapper.h b/kmyfirewall/core/kprocesswrapper.h index 1edc4a5..d7f0a41 100644 --- a/kmyfirewall/core/kprocesswrapper.h +++ b/kmyfirewall/core/kprocesswrapper.h @@ -31,7 +31,7 @@ class KMFTarget; */ class KProcessWrapper : public TQObject { Q_OBJECT - TQ_OBJECT + //############# Beginn static stuff ############## public: diff --git a/kmyfirewall/genericinterface/kmfgenericinterface.h b/kmyfirewall/genericinterface/kmfgenericinterface.h index c12811d..10ec302 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterface.h +++ b/kmyfirewall/genericinterface/kmfgenericinterface.h @@ -56,7 +56,7 @@ class NetfilterObject; class KMFGenericInterface : public KJanusWidget { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterface( TQWidget *parent = 0, const char *name = 0 ); diff --git a/kmyfirewall/genericinterface/kmfgenericinterface_part.h b/kmyfirewall/genericinterface/kmfgenericinterface_part.h index fe3cc2b..e72be94 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterface_part.h +++ b/kmyfirewall/genericinterface/kmfgenericinterface_part.h @@ -30,7 +30,7 @@ class KMFGenericInterface; class KMFGenericInterfacePart: public KParts::ReadWritePart { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfacePart( TQWidget *parent, const char *name, TQObject *parentObject, const char *nameOb, @@ -94,7 +94,7 @@ private: class KMFGenericInterfacePartFactory : public KParts::Factory { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfacePartFactory(); virtual ~KMFGenericInterfacePartFactory(); diff --git a/kmyfirewall/genericinterface/kmfgenericinterfacehost.h b/kmyfirewall/genericinterface/kmfgenericinterfacehost.h index a4d8722..a172f24 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfacehost.h +++ b/kmyfirewall/genericinterface/kmfgenericinterfacehost.h @@ -53,7 +53,7 @@ class NetfilterObject; class KMFGenericInterfaceHost : public KMyFirewallGenericInterfaceHostWidget { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceHost( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/genericinterface/kmfgenericinterfaceicmp.h b/kmyfirewall/genericinterface/kmfgenericinterfaceicmp.h index ca9b557..bf15727 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfaceicmp.h +++ b/kmyfirewall/genericinterface/kmfgenericinterfaceicmp.h @@ -38,7 +38,7 @@ class NetfilterObject; class KMFGenericInterfaceIcmp : public KMyFirewallGenericInterfaceIcmp { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceIcmp( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/genericinterface/kmfgenericinterfacelogging.h b/kmyfirewall/genericinterface/kmfgenericinterfacelogging.h index d0ad816..bff3de4 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfacelogging.h +++ b/kmyfirewall/genericinterface/kmfgenericinterfacelogging.h @@ -42,7 +42,7 @@ class NetfilterObject; class KMFGenericInterfaceLogging : public KMyFirewallGenericInterfaceLogging { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceLogging( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/genericinterface/kmfgenericinterfacenat.h b/kmyfirewall/genericinterface/kmfgenericinterfacenat.h index 5f7ce8d..3bda362 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfacenat.h +++ b/kmyfirewall/genericinterface/kmfgenericinterfacenat.h @@ -39,7 +39,7 @@ class NetfilterObject; class KMFGenericInterfaceNat : public KMyFirewallGenericInterfaceNATWidget { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceNat( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.h b/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.h index 048e8cc..0a47d44 100644 --- a/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.h +++ b/kmyfirewall/genericinterface/kmfgenericinterfaceprotocol.h @@ -62,7 +62,7 @@ class KMFProtocolListView; class KMFGenericInterfaceProtocol : public KMyFirewallGenericInterfaceProtocolWidget { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceProtocol( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/installer/kmfinstallerplugin.h b/kmyfirewall/installer/kmfinstallerplugin.h index 8a37dc0..22c3cd5 100644 --- a/kmyfirewall/installer/kmfinstallerplugin.h +++ b/kmyfirewall/installer/kmfinstallerplugin.h @@ -45,7 +45,7 @@ class KMFTarget; */ class KMFInstallerPlugin : public KMFPlugin { Q_OBJECT - TQ_OBJECT + public: /** * Default constructor @@ -103,7 +103,7 @@ private: class KMFInstallerPluginFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFInstallerPluginFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFInstallerPluginFactory() { diff --git a/kmyfirewall/installer/linux/kmfiptinstaller.h b/kmyfirewall/installer/linux/kmfiptinstaller.h index 5a28130..ac54292 100644 --- a/kmyfirewall/installer/linux/kmfiptinstaller.h +++ b/kmyfirewall/installer/linux/kmfiptinstaller.h @@ -47,7 +47,7 @@ class KMFCompilerInterface; class KMFIPTInstaller : public KMFPlugin, public KMFInstallerInterface { Q_OBJECT - TQ_OBJECT + public: KMFIPTInstaller( TQObject* parent = 0, const char* name = 0 ); @@ -126,7 +126,7 @@ signals: class KMFIPTInstallerFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFIPTInstallerFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFIPTInstallerFactory() {}; diff --git a/kmyfirewall/installer/openbsd/kmfpfinstaller.h b/kmyfirewall/installer/openbsd/kmfpfinstaller.h index 2ebfc3d..4af982d 100644 --- a/kmyfirewall/installer/openbsd/kmfpfinstaller.h +++ b/kmyfirewall/installer/openbsd/kmfpfinstaller.h @@ -48,7 +48,7 @@ class KMFCompilerInterface; class KMFPFInstaller : public KMFPlugin, public KMFInstallerInterface { Q_OBJECT - TQ_OBJECT + public: KMFPFInstaller( TQObject* parent = 0, const char* name = 0 ); @@ -105,7 +105,7 @@ private: class KMFPFInstallerFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFPFInstallerFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFPFInstallerFactory() {}; diff --git a/kmyfirewall/ipteditor/kmfchainedit.h b/kmyfirewall/ipteditor/kmfchainedit.h index 2a0208e..5d83f13 100644 --- a/kmyfirewall/ipteditor/kmfchainedit.h +++ b/kmyfirewall/ipteditor/kmfchainedit.h @@ -27,7 +27,7 @@ namespace KMF { class KMFChainEdit : public KMyFirewallChainEditor { Q_OBJECT - TQ_OBJECT + public: KMFChainEdit( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~KMFChainEdit(); diff --git a/kmyfirewall/ipteditor/kmfipteditorpart.h b/kmyfirewall/ipteditor/kmfipteditorpart.h index 29a9d85..7268d1b 100644 --- a/kmyfirewall/ipteditor/kmfipteditorpart.h +++ b/kmyfirewall/ipteditor/kmfipteditorpart.h @@ -41,7 +41,7 @@ class KMFIPTDocOptions; class KMFIPTEditorPart : public KParts::ReadWritePart { Q_OBJECT - TQ_OBJECT + public: /** * Default constructor @@ -108,7 +108,7 @@ private: class KMFIPTEditorPartFactory : public KParts::Factory { Q_OBJECT - TQ_OBJECT + public: KMFIPTEditorPartFactory(); virtual ~KMFIPTEditorPartFactory(); diff --git a/kmyfirewall/ipteditor/kmfnewchaindlg.h b/kmyfirewall/ipteditor/kmfnewchaindlg.h index 0d9fb83..02d31e1 100644 --- a/kmyfirewall/ipteditor/kmfnewchaindlg.h +++ b/kmyfirewall/ipteditor/kmfnewchaindlg.h @@ -33,7 +33,7 @@ class KMFCheckInput; class KMFNewChainDlg : public KMyFirewallChainEditorNewChain { Q_OBJECT - TQ_OBJECT + public: KMFNewChainDlg( TQWidget *parent = 0, const char *name = 0, bool modal = FALSE, WFlags fl = 0 ); ~KMFNewChainDlg(); diff --git a/kmyfirewall/ipteditor/kmfruleedit.h b/kmyfirewall/ipteditor/kmfruleedit.h index 2cf8914..d9341ba 100644 --- a/kmyfirewall/ipteditor/kmfruleedit.h +++ b/kmyfirewall/ipteditor/kmfruleedit.h @@ -59,7 +59,7 @@ class KMFMyNetworkWidget; class KMFRuleEdit : public KMyFirewallRuleEditor, public KMFRuleEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleEdit( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfconfigdialog.h b/kmyfirewall/kmfconfigdialog.h index 9ba02c5..f7fbc5d 100644 --- a/kmyfirewall/kmfconfigdialog.h +++ b/kmyfirewall/kmfconfigdialog.h @@ -43,7 +43,7 @@ class KMFGenericInterfaceEditProtocol; class KMFConfigDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: KMFConfigDialog( TQWidget *parent = 0, const char *name = 0, bool modal = true ); diff --git a/kmyfirewall/kmfwidgets/kmfchecklistoutput.h b/kmyfirewall/kmfwidgets/kmfchecklistoutput.h index 79ec49e..c36b6aa 100644 --- a/kmyfirewall/kmfwidgets/kmfchecklistoutput.h +++ b/kmyfirewall/kmfwidgets/kmfchecklistoutput.h @@ -31,7 +31,7 @@ namespace KMF { class KDE_EXPORT KMFCheckListOutput : public TQDialog { Q_OBJECT - TQ_OBJECT + public: KMFCheckListOutput( TQWidget *parent = 0, const char *name = 0, bool modal = FALSE, WFlags fl = 0 ); ~KMFCheckListOutput(); diff --git a/kmyfirewall/kmfwidgets/kmfdocumentinfo.h b/kmyfirewall/kmfwidgets/kmfdocumentinfo.h index 1d3f0ba..a330d24 100644 --- a/kmyfirewall/kmfwidgets/kmfdocumentinfo.h +++ b/kmyfirewall/kmfwidgets/kmfdocumentinfo.h @@ -26,7 +26,7 @@ class KMFDoc; class KDE_EXPORT KMFDocumentInfo : public KMyFirewallDocumentInfo { Q_OBJECT - TQ_OBJECT + public: KMFDocumentInfo(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfgenericinterfaceeditprotocol.h b/kmyfirewall/kmfwidgets/kmfgenericinterfaceeditprotocol.h index 5644822..6e6a0e4 100644 --- a/kmyfirewall/kmfwidgets/kmfgenericinterfaceeditprotocol.h +++ b/kmyfirewall/kmfwidgets/kmfgenericinterfaceeditprotocol.h @@ -46,7 +46,7 @@ class KMFProtocolCategory; class KMFGenericInterfaceEditProtocol : public KMyFirewallGenericInterfaceEditProtocolWidget { Q_OBJECT - TQ_OBJECT + public: KMFGenericInterfaceEditProtocol( TQWidget *parent = 0, const char *name = 0, WFlags f = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfhostwidget.h b/kmyfirewall/kmfwidgets/kmfhostwidget.h index 352cfff..a3cfde9 100644 --- a/kmyfirewall/kmfwidgets/kmfhostwidget.h +++ b/kmyfirewall/kmfwidgets/kmfhostwidget.h @@ -30,7 +30,7 @@ class KMFTarget; class KMFHostWidget : public KMyFirewallHostWidget { Q_OBJECT - TQ_OBJECT + public: KMFHostWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfinterfacewidget.h b/kmyfirewall/kmfwidgets/kmfinterfacewidget.h index 5d00fb1..76118c9 100644 --- a/kmyfirewall/kmfwidgets/kmfinterfacewidget.h +++ b/kmyfirewall/kmfwidgets/kmfinterfacewidget.h @@ -26,7 +26,7 @@ class KMFTarget; class KMFInterfaceWidget : public KMyFirewallInterfaceWidget { Q_OBJECT - TQ_OBJECT + public: KMFInterfaceWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfiptdocoptions.h b/kmyfirewall/kmfwidgets/kmfiptdocoptions.h index b3bb508..feb1e8a 100644 --- a/kmyfirewall/kmfwidgets/kmfiptdocoptions.h +++ b/kmyfirewall/kmfwidgets/kmfiptdocoptions.h @@ -31,7 +31,7 @@ class KMFIPTDoc; class KDE_EXPORT KMFIPTDocOptions : public KMyFirewallIPTDocOptions { Q_OBJECT - TQ_OBJECT + public: KMFIPTDocOptions( TQWidget *parent = 0, const char *name = 0 ); ~KMFIPTDocOptions(); diff --git a/kmyfirewall/kmfwidgets/kmfiptdocview.h b/kmyfirewall/kmfwidgets/kmfiptdocview.h index a281cca..16cde46 100644 --- a/kmyfirewall/kmfwidgets/kmfiptdocview.h +++ b/kmyfirewall/kmfwidgets/kmfiptdocview.h @@ -29,7 +29,7 @@ class IPTable; class KMFIPTDocView : public TQTabWidget { Q_OBJECT - TQ_OBJECT + public: KMFIPTDocView(TQWidget *parent = 0, const char *name = 0); diff --git a/kmyfirewall/kmfwidgets/kmfipv4addresswidget.h b/kmyfirewall/kmfwidgets/kmfipv4addresswidget.h index 919f21b..b9afb7a 100644 --- a/kmyfirewall/kmfwidgets/kmfipv4addresswidget.h +++ b/kmyfirewall/kmfwidgets/kmfipv4addresswidget.h @@ -23,7 +23,7 @@ class IPAddress; class KMFIPv4AddressWidget : public KMyFirewallIPv4AdddressWidget { Q_OBJECT - TQ_OBJECT + public: KMFIPv4AddressWidget ( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmflistview.h b/kmyfirewall/kmfwidgets/kmflistview.h index 8211240..48acc64 100644 --- a/kmyfirewall/kmfwidgets/kmflistview.h +++ b/kmyfirewall/kmfwidgets/kmflistview.h @@ -43,7 +43,7 @@ class KMFListViewItem; class KDE_EXPORT KMFListView : public KListView { Q_OBJECT - TQ_OBJECT + public: KMFListView( TQWidget *parent = 0, const char *name = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfmainwindow.h b/kmyfirewall/kmfwidgets/kmfmainwindow.h index 9fa985f..a789f8f 100644 --- a/kmyfirewall/kmfwidgets/kmfmainwindow.h +++ b/kmyfirewall/kmfwidgets/kmfmainwindow.h @@ -33,7 +33,7 @@ namespace KMF { class KDE_EXPORT KMFMainWindow : public KParts::MainWindow, virtual public KMyFirewallInterface { Q_OBJECT - TQ_OBJECT + public: KMFMainWindow( TQWidget* parent, const char *name ); diff --git a/kmyfirewall/kmfwidgets/kmfmultiportwidget.h b/kmyfirewall/kmfwidgets/kmfmultiportwidget.h index 0efa0c3..cb58c08 100644 --- a/kmyfirewall/kmfwidgets/kmfmultiportwidget.h +++ b/kmyfirewall/kmfwidgets/kmfmultiportwidget.h @@ -32,7 +32,7 @@ class KMFError; class KDE_EXPORT KMFMultiPortWidget : public KMyFirewallMultiPortWidget { Q_OBJECT - TQ_OBJECT + public: KMFMultiPortWidget( TQWidget *parent = 0, const char *name = 0 ); ~KMFMultiPortWidget(); diff --git a/kmyfirewall/kmfwidgets/kmfmynetworkwidget.h b/kmyfirewall/kmfwidgets/kmfmynetworkwidget.h index 87dea1c..a1f95ec 100644 --- a/kmyfirewall/kmfwidgets/kmfmynetworkwidget.h +++ b/kmyfirewall/kmfwidgets/kmfmynetworkwidget.h @@ -42,7 +42,7 @@ class NetfilterObject; class KMFMyNetworkWidget : public KMyFirewallMyNetworkWidget { Q_OBJECT - TQ_OBJECT + public: KMFMyNetworkWidget(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfnethostpropertieswidget.h b/kmyfirewall/kmfwidgets/kmfnethostpropertieswidget.h index e828157..11aea89 100644 --- a/kmyfirewall/kmfwidgets/kmfnethostpropertieswidget.h +++ b/kmyfirewall/kmfwidgets/kmfnethostpropertieswidget.h @@ -24,7 +24,7 @@ class KMFIPv4AddressWidget; class KMFNetHostPropertiesWidget : public KMyFirewallNetHostProperties { Q_OBJECT - TQ_OBJECT + public: KMFNetHostPropertiesWidget ( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfnetworkwidget.h b/kmyfirewall/kmfwidgets/kmfnetworkwidget.h index 085d091..1b8db55 100644 --- a/kmyfirewall/kmfwidgets/kmfnetworkwidget.h +++ b/kmyfirewall/kmfwidgets/kmfnetworkwidget.h @@ -34,7 +34,7 @@ class TQFocusEvent; namespace KMF { class KDE_EXPORT KMFNetworkWidget : public KMyFirewallNetworkWidget { Q_OBJECT - TQ_OBJECT + public: KMFNetworkWidget(TQWidget *parent = 0, const char *name = 0); ~KMFNetworkWidget(); diff --git a/kmyfirewall/kmfwidgets/kmfnewdocdlg.h b/kmyfirewall/kmfwidgets/kmfnewdocdlg.h index 299a137..7a1ffbb 100644 --- a/kmyfirewall/kmfwidgets/kmfnewdocdlg.h +++ b/kmyfirewall/kmfwidgets/kmfnewdocdlg.h @@ -29,7 +29,7 @@ class TQKeyEvent; namespace KMF { class KDE_EXPORT KMFNewDocDlg : public KMyFirewallNewDocument { Q_OBJECT - TQ_OBJECT + public: KMFNewDocDlg(TQWidget *parent=0, const char *name=0, WFlags fl = 0); ~KMFNewDocDlg(); diff --git a/kmyfirewall/kmfwidgets/kmfobjectinfo.h b/kmyfirewall/kmfwidgets/kmfobjectinfo.h index fa3976d..e117458 100644 --- a/kmyfirewall/kmfwidgets/kmfobjectinfo.h +++ b/kmyfirewall/kmfwidgets/kmfobjectinfo.h @@ -30,7 +30,7 @@ class KMFDoc; class KDE_EXPORT KMFObjectInfo : public KMyFirewallObjectInfo { Q_OBJECT - TQ_OBJECT + public: KMFObjectInfo(TQWidget *parent=0, const char *name=0, bool modal=false); ~KMFObjectInfo(); diff --git a/kmyfirewall/kmfwidgets/kmfportwidget.h b/kmyfirewall/kmfwidgets/kmfportwidget.h index f73c858..e11be40 100644 --- a/kmyfirewall/kmfwidgets/kmfportwidget.h +++ b/kmyfirewall/kmfwidgets/kmfportwidget.h @@ -29,7 +29,7 @@ class KMFError; class KDE_EXPORT KMFPortWidget : public KMyFirewallPortWidget { Q_OBJECT - TQ_OBJECT + public: KMFPortWidget( TQWidget *parent = 0, const char *name = 0 ); ~KMFPortWidget(); diff --git a/kmyfirewall/kmfwidgets/kmfprocout.h b/kmyfirewall/kmfwidgets/kmfprocout.h index 5ec408a..9dc0832 100644 --- a/kmyfirewall/kmfwidgets/kmfprocout.h +++ b/kmyfirewall/kmfwidgets/kmfprocout.h @@ -35,7 +35,7 @@ class TQTextBrowser; namespace KMF { class KDE_EXPORT KMFProcOut : public TQWidget { Q_OBJECT - TQ_OBJECT + public: KMFProcOut( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFProcOut(); diff --git a/kmyfirewall/kmfwidgets/kmfprotocollistview.h b/kmyfirewall/kmfwidgets/kmfprotocollistview.h index b42544b..51b6fc7 100644 --- a/kmyfirewall/kmfwidgets/kmfprotocollistview.h +++ b/kmyfirewall/kmfwidgets/kmfprotocollistview.h @@ -33,7 +33,7 @@ class KMFNetHost; class KMFProtocolListView : public KMyFirewallProtocolListView { Q_OBJECT - TQ_OBJECT + public: KMFProtocolListView ( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfprotocolpropertieswidget.h b/kmyfirewall/kmfwidgets/kmfprotocolpropertieswidget.h index 1c54055..e0f6b17 100644 --- a/kmyfirewall/kmfwidgets/kmfprotocolpropertieswidget.h +++ b/kmyfirewall/kmfwidgets/kmfprotocolpropertieswidget.h @@ -29,7 +29,7 @@ class KMFProtocolCategory; class KMFProtocolPropertiesWidget : public KMyFirewallProtocolPropertiesWidget { Q_OBJECT - TQ_OBJECT + public: KMFProtocolPropertiesWidget ( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfselectactivetarget.h b/kmyfirewall/kmfwidgets/kmfselectactivetarget.h index ae7ffbc..74f1c14 100644 --- a/kmyfirewall/kmfwidgets/kmfselectactivetarget.h +++ b/kmyfirewall/kmfwidgets/kmfselectactivetarget.h @@ -28,7 +28,7 @@ class KMFTarget; class KMFSelectActiveTarget : public KMyFirewallSelectActiveTarget { Q_OBJECT - TQ_OBJECT + public: static KMFTarget* selectTarget( KMFNetwork* network, const TQString& msg ); public: diff --git a/kmyfirewall/kmfwidgets/kmfselectinterface.h b/kmyfirewall/kmfwidgets/kmfselectinterface.h index 02baa76..16ef1f0 100644 --- a/kmyfirewall/kmfwidgets/kmfselectinterface.h +++ b/kmyfirewall/kmfwidgets/kmfselectinterface.h @@ -27,7 +27,7 @@ namespace KMF { class KDE_EXPORT KMFSelectInterface : public KMyFirewallSelectInterface { Q_OBJECT - TQ_OBJECT + public: KMFSelectInterface( TQWidget *parent = 0, const char *name = 0, bool modal = true, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmfsystemsettingslinux.h b/kmyfirewall/kmfwidgets/kmfsystemsettingslinux.h index 1a6d696..85fc84f 100644 --- a/kmyfirewall/kmfwidgets/kmfsystemsettingslinux.h +++ b/kmyfirewall/kmfwidgets/kmfsystemsettingslinux.h @@ -25,7 +25,7 @@ class KMFTarget; class KMFSystemSettingsLinux : public KMyFirewallSystemSettingsLinux { Q_OBJECT - TQ_OBJECT + public: KMFSystemSettingsLinux(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmftemplatechooser.h b/kmyfirewall/kmfwidgets/kmftemplatechooser.h index d295d50..59eb978 100644 --- a/kmyfirewall/kmfwidgets/kmftemplatechooser.h +++ b/kmyfirewall/kmfwidgets/kmftemplatechooser.h @@ -30,7 +30,7 @@ class TQListBoxItem; namespace KMF { class KDE_EXPORT KMFTemplateChooser : public KMyFirewallTemplateChooser { Q_OBJECT - TQ_OBJECT + public: KMFTemplateChooser(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); diff --git a/kmyfirewall/kmfwidgets/kmftransactionlog.h b/kmyfirewall/kmfwidgets/kmftransactionlog.h index 1d63fa8..c71d9fc 100644 --- a/kmyfirewall/kmfwidgets/kmftransactionlog.h +++ b/kmyfirewall/kmfwidgets/kmftransactionlog.h @@ -30,7 +30,7 @@ class KMFTransaction; class KMFTransactionLog : public KMyFirewallTransactionLog { Q_OBJECT - TQ_OBJECT + public: static KMFTransactionLog* instance(); diff --git a/kmyfirewall/kmyfirewall.h b/kmyfirewall/kmyfirewall.h index 362a2dc..5e21f48 100644 --- a/kmyfirewall/kmyfirewall.h +++ b/kmyfirewall/kmyfirewall.h @@ -67,7 +67,7 @@ class KMFTarget; /** KMyFirewall is the base class of the project */ class KMyFirewall : public KMFMainWindow { Q_OBJECT - TQ_OBJECT + public: KMyFirewall( TQWidget* parent = 0, const char *name = 0 ); diff --git a/kmyfirewall/ruleoptionplugins/custom_option/kmfruleeditcustomopt.h b/kmyfirewall/ruleoptionplugins/custom_option/kmfruleeditcustomopt.h index 76992a7..8674ab9 100644 --- a/kmyfirewall/ruleoptionplugins/custom_option/kmfruleeditcustomopt.h +++ b/kmyfirewall/ruleoptionplugins/custom_option/kmfruleeditcustomopt.h @@ -29,7 +29,7 @@ class IPTRule; class KMFRuleEditCustomOpt : public KMyFirewallRuleEditorCustomRule { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditCustomOpt(TQWidget *parent=0, const char *name=0); ~KMFRuleEditCustomOpt(); diff --git a/kmyfirewall/ruleoptionplugins/custom_option/kmfruleoptioneditcustom.h b/kmyfirewall/ruleoptionplugins/custom_option/kmfruleoptioneditcustom.h index 8ab5352..ab96c56 100644 --- a/kmyfirewall/ruleoptionplugins/custom_option/kmfruleoptioneditcustom.h +++ b/kmyfirewall/ruleoptionplugins/custom_option/kmfruleoptioneditcustom.h @@ -46,7 +46,7 @@ class KMFRuleEditCustomOpt; */ class KMFRuleOptionEditCustom : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditCustom(TQObject *parent = 0, const char *name = 0, const TQStringList& = TQString()); @@ -69,7 +69,7 @@ private: class KMFRuleOptionEditCustomFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditCustomFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditCustomFactory() { diff --git a/kmyfirewall/ruleoptionplugins/interface_option/kmfruleeditorinterface.h b/kmyfirewall/ruleoptionplugins/interface_option/kmfruleeditorinterface.h index 5bf377a..1e68612 100644 --- a/kmyfirewall/ruleoptionplugins/interface_option/kmfruleeditorinterface.h +++ b/kmyfirewall/ruleoptionplugins/interface_option/kmfruleeditorinterface.h @@ -31,7 +31,7 @@ class IPTRule; class KMFRuleEditorInterface : public KMyFirewallRuleEditorInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorInterface( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorInterface(); diff --git a/kmyfirewall/ruleoptionplugins/interface_option/kmfruleoptioneditinterface.h b/kmyfirewall/ruleoptionplugins/interface_option/kmfruleoptioneditinterface.h index c1e01fe..5cb12b2 100644 --- a/kmyfirewall/ruleoptionplugins/interface_option/kmfruleoptioneditinterface.h +++ b/kmyfirewall/ruleoptionplugins/interface_option/kmfruleoptioneditinterface.h @@ -30,7 +30,7 @@ class KMFRuleEditorInterface; */ class KMFRuleOptionEditorInterface : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditorInterface(TQObject *parent = 0, const char *name = 0); @@ -53,7 +53,7 @@ private: class KMFRuleOptionEditorInterfaceFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditorInterfaceFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditorInterfaceFactory() { diff --git a/kmyfirewall/ruleoptionplugins/ip_option/kmfruleeditip.h b/kmyfirewall/ruleoptionplugins/ip_option/kmfruleeditip.h index 5e6f15e..4a38c31 100644 --- a/kmyfirewall/ruleoptionplugins/ip_option/kmfruleeditip.h +++ b/kmyfirewall/ruleoptionplugins/ip_option/kmfruleeditip.h @@ -26,7 +26,7 @@ class KMFCheckInput; class KMFError; class KMFRuleEditIP : public KMyFirewallRuleEditorIP /*, virtual public KMFRuleOptionEditInterface */{ Q_OBJECT - TQ_OBJECT + public: KMFRuleEditIP( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/ruleoptionplugins/ip_option/kmfruleoptioneditip.h b/kmyfirewall/ruleoptionplugins/ip_option/kmfruleoptioneditip.h index db0a155..39138df 100644 --- a/kmyfirewall/ruleoptionplugins/ip_option/kmfruleoptioneditip.h +++ b/kmyfirewall/ruleoptionplugins/ip_option/kmfruleoptioneditip.h @@ -40,7 +40,7 @@ class KMFRuleEditIP; */ class KMFRuleOptionEditIP : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditIP(TQObject *parent = 0, const char *name = 0); @@ -63,7 +63,7 @@ private: class KMFRuleOptionEditIPFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditIPFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditIPFactory() { diff --git a/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h index cdd60f6..4952577 100644 --- a/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h +++ b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h @@ -27,7 +27,7 @@ class IPTRule; class KMFRuleEditorLimit : public KMyFirewallRuleEditorLimit { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorLimit( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorLimit(); diff --git a/kmyfirewall/ruleoptionplugins/limit_option/kmfruleoptioneditlimit.h b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleoptioneditlimit.h index 0d38801..eced67a 100644 --- a/kmyfirewall/ruleoptionplugins/limit_option/kmfruleoptioneditlimit.h +++ b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleoptioneditlimit.h @@ -40,7 +40,7 @@ class KMFRuleEditorLimit; */ class KMFRuleOptionEditLimit : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditLimit(TQObject *parent = 0, const char *name = 0); @@ -63,7 +63,7 @@ private: class KMFRuleOptionEditLimitFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditLimitFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditLimitFactory() { diff --git a/kmyfirewall/ruleoptionplugins/log_target_option/kmfruleedittargetlog.h b/kmyfirewall/ruleoptionplugins/log_target_option/kmfruleedittargetlog.h index d793e36..6aa5e98 100644 --- a/kmyfirewall/ruleoptionplugins/log_target_option/kmfruleedittargetlog.h +++ b/kmyfirewall/ruleoptionplugins/log_target_option/kmfruleedittargetlog.h @@ -27,7 +27,7 @@ class IPTRule; class KMFRuleEditTargetLog : public KMyFirewallRuleEditorTargetLog { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditTargetLog( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditTargetLog(); diff --git a/kmyfirewall/ruleoptionplugins/log_target_option/kmfruletargetoptioneditlog.h b/kmyfirewall/ruleoptionplugins/log_target_option/kmfruletargetoptioneditlog.h index 5c27778..89489e5 100644 --- a/kmyfirewall/ruleoptionplugins/log_target_option/kmfruletargetoptioneditlog.h +++ b/kmyfirewall/ruleoptionplugins/log_target_option/kmfruletargetoptioneditlog.h @@ -28,7 +28,7 @@ class KMFRuleEditTargetLog; */ class KMFRuleTargetOptionEditLog : public KMFRuleTargetOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditLog(TQObject *parent = 0, const char *name = 0); @@ -52,7 +52,7 @@ private: class KMFRuleTargetOptionEditLogFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditLogFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleTargetOptionEditLogFactory() { diff --git a/kmyfirewall/ruleoptionplugins/mac_option/kmfruleeditmac.h b/kmyfirewall/ruleoptionplugins/mac_option/kmfruleeditmac.h index adbbe62..a2ea570 100644 --- a/kmyfirewall/ruleoptionplugins/mac_option/kmfruleeditmac.h +++ b/kmyfirewall/ruleoptionplugins/mac_option/kmfruleeditmac.h @@ -28,7 +28,7 @@ class KMFError; class KMFRuleEditMac : public KMyFirewallRuleEditorMac { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditMac( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kmyfirewall/ruleoptionplugins/mac_option/kmfruleoptioneditmac.h b/kmyfirewall/ruleoptionplugins/mac_option/kmfruleoptioneditmac.h index 22b8d66..b807360 100644 --- a/kmyfirewall/ruleoptionplugins/mac_option/kmfruleoptioneditmac.h +++ b/kmyfirewall/ruleoptionplugins/mac_option/kmfruleoptioneditmac.h @@ -44,7 +44,7 @@ class KMFRuleEditMac; */ class KMFRuleOptionEditMAC : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditMAC(TQObject *parent = 0, const char *name = 0); @@ -67,7 +67,7 @@ private: class KMFRuleOptionEditMACFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditMACFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditMACFactory() { diff --git a/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruleedittargetmark.h b/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruleedittargetmark.h index b7d5129..6a38138 100644 --- a/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruleedittargetmark.h +++ b/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruleedittargetmark.h @@ -29,7 +29,7 @@ class IPTRule; class KMFRuleEditTargetMark : public KMyFirewallRuleEditorTargetMark { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditTargetMark( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditTargetMark(); diff --git a/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruletargetoptioneditmark.h b/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruletargetoptioneditmark.h index 56052fe..6a71bc9 100644 --- a/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruletargetoptioneditmark.h +++ b/kmyfirewall/ruleoptionplugins/mark_target_option/kmfruletargetoptioneditmark.h @@ -30,7 +30,7 @@ class KMFRuleEditTargetMark; */ class KMFRuleTargetOptionEditMark : public KMFRuleTargetOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditMark(TQObject *parent = 0, const char *name = 0); @@ -55,7 +55,7 @@ private: class KMFRuleTargetOptionEditMarkFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditMarkFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleTargetOptionEditMarkFactory() { diff --git a/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruleeditortargetnat.h b/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruleeditortargetnat.h index 63d83ca..546cc37 100644 --- a/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruleeditortargetnat.h +++ b/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruleeditortargetnat.h @@ -31,7 +31,7 @@ class KMFError; class KMFRuleEditorTargetNat : public KMyFirewallRuleEditorTargetNat { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorTargetNat( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorTargetNat(); diff --git a/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruletargetoptioneditnat.h b/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruletargetoptioneditnat.h index 253ce3a..f55ebbc 100644 --- a/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruletargetoptioneditnat.h +++ b/kmyfirewall/ruleoptionplugins/nat_target_option/kmfruletargetoptioneditnat.h @@ -40,7 +40,7 @@ class KMFRuleEditorTargetNat; */ class KMFRuleTargetOptionEditNat : public KMFRuleTargetOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditNat(TQObject *parent = 0, const char *name = 0); @@ -64,7 +64,7 @@ private: class KMFRuleTargetOptionEditNatFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditNatFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleTargetOptionEditNatFactory() { diff --git a/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleeditorprotocol.h b/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleeditorprotocol.h index 2a1d79f..a91ca88 100644 --- a/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleeditorprotocol.h +++ b/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleeditorprotocol.h @@ -33,7 +33,7 @@ class IPTRule; class KMFRuleEditorProtocol : public KMyFirewallRuleEditorProtocol { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorProtocol( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorProtocol(); diff --git a/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleoptioneditprotocol.h b/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleoptioneditprotocol.h index d59df18..2055694 100644 --- a/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleoptioneditprotocol.h +++ b/kmyfirewall/ruleoptionplugins/protocol_option/kmfruleoptioneditprotocol.h @@ -42,7 +42,7 @@ class KMFRuleEditorProtocol; */ class KMFRuleOptionEditProtocol : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditProtocol(TQObject *parent = 0, const char *name = 0); @@ -65,7 +65,7 @@ private: class KMFRuleOptionEditProtocolFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditProtocolFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditProtocolFactory() { diff --git a/kmyfirewall/ruleoptionplugins/state_option/kmfruleeditorstate.h b/kmyfirewall/ruleoptionplugins/state_option/kmfruleeditorstate.h index 83db692..01303a8 100644 --- a/kmyfirewall/ruleoptionplugins/state_option/kmfruleeditorstate.h +++ b/kmyfirewall/ruleoptionplugins/state_option/kmfruleeditorstate.h @@ -26,7 +26,7 @@ class IPTRule; class KMFRuleEditorState : public KMyFirewallRuleEditorState { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorState( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorState(); diff --git a/kmyfirewall/ruleoptionplugins/state_option/kmfruleoptioneditstate.h b/kmyfirewall/ruleoptionplugins/state_option/kmfruleoptioneditstate.h index 7ded5de..f246bbb 100644 --- a/kmyfirewall/ruleoptionplugins/state_option/kmfruleoptioneditstate.h +++ b/kmyfirewall/ruleoptionplugins/state_option/kmfruleoptioneditstate.h @@ -40,7 +40,7 @@ class KMFRuleEditorState; */ class KMFRuleOptionEditState : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditState(TQObject *parent = 0, const char *name = 0); @@ -63,7 +63,7 @@ private: class KMFRuleOptionEditStateFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditStateFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditStateFactory() { diff --git a/kmyfirewall/ruleoptionplugins/tos_option/kmfruleeditortos.h b/kmyfirewall/ruleoptionplugins/tos_option/kmfruleeditortos.h index 2d67fd6..fa61034 100644 --- a/kmyfirewall/ruleoptionplugins/tos_option/kmfruleeditortos.h +++ b/kmyfirewall/ruleoptionplugins/tos_option/kmfruleeditortos.h @@ -29,7 +29,7 @@ class IPTRule; class KMFRuleEditorTos : public KMyFirewallRuleEditorTos { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorTos( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorTos(); diff --git a/kmyfirewall/ruleoptionplugins/tos_option/kmfruleoptionedittos.h b/kmyfirewall/ruleoptionplugins/tos_option/kmfruleoptionedittos.h index 9e1bfcd..87499d1 100644 --- a/kmyfirewall/ruleoptionplugins/tos_option/kmfruleoptionedittos.h +++ b/kmyfirewall/ruleoptionplugins/tos_option/kmfruleoptionedittos.h @@ -40,7 +40,7 @@ class KMFRuleEditorTos; */ class KMFRuleOptionEditTos : public KMFRuleOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditTos(TQObject *parent = 0, const char *name = 0); @@ -63,7 +63,7 @@ private: class KMFRuleOptionEditTosFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleOptionEditTosFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleOptionEditTosFactory() { diff --git a/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruleeditortos.h b/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruleeditortos.h index 2d67fd6..fa61034 100644 --- a/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruleeditortos.h +++ b/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruleeditortos.h @@ -29,7 +29,7 @@ class IPTRule; class KMFRuleEditorTos : public KMyFirewallRuleEditorTos { Q_OBJECT - TQ_OBJECT + public: KMFRuleEditorTos( TQWidget *parent = 0, const char *name = 0, WFlags fl = 0 ); ~KMFRuleEditorTos(); diff --git a/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruletargetoptionedittos.h b/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruletargetoptionedittos.h index 6d7ea78..1bf64cd 100644 --- a/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruletargetoptionedittos.h +++ b/kmyfirewall/ruleoptionplugins/tos_target_option/kmfruletargetoptionedittos.h @@ -28,7 +28,7 @@ class KMFRuleEditorTos; */ class KMFRuleTargetOptionEditTos : public KMFRuleTargetOptionEditInterface { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditTos(TQObject *parent = 0, const char *name = 0); @@ -52,7 +52,7 @@ private: class KMFRuleTargetOptionEditTosFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: KMFRuleTargetOptionEditTosFactory( TQObject *parent = 0, const char *name = 0 ); virtual ~KMFRuleTargetOptionEditTosFactory() {