Remove spurious TQ_OBJECT instances

pull/1/head
Timothy Pearson 12 years ago
parent fb342b018c
commit 201cffba36

@ -37,7 +37,7 @@ class KSystemTray;
class DeviceTrayComponent : public TrayComponent
{
Q_OBJECT
TQ_OBJECT
public:
DeviceTrayComponent(Device * device, KSystemTray * parent, const char * name );
virtual ~DeviceTrayComponent();

@ -38,7 +38,7 @@ namespace DBus
class AccessPoint : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
AccessPoint (const AccessPoint&);
AccessPoint (TQString objpath = TQString(), TQObject * parent = 0, const char * name = 0);

@ -36,7 +36,7 @@ namespace ConnectionSettings
class CDMAConnection : public PPPConnection
{
Q_OBJECT
TQ_OBJECT
public:
CDMAConnection();
~CDMAConnection();

@ -39,7 +39,7 @@ class CDMADevicePrivate;
class CDMADevice : public CellularDevice
{
Q_OBJECT
TQ_OBJECT
public:
CDMADevice (const TQString & obj_path );
~CDMADevice ();

@ -31,7 +31,7 @@
class CellularDevice : public Device
{
Q_OBJECT
TQ_OBJECT
public:
CellularDevice (const TQString & obj_path );
~CellularDevice ();

@ -38,7 +38,7 @@ class CellularDeviceTrayPrivate;
class CellularDeviceTray : public DeviceTrayComponent
{
Q_OBJECT
TQ_OBJECT
public:
CellularDeviceTray (CellularDevice*, KSystemTray * parent = 0, const char * name = 0);
~CellularDeviceTray ();

@ -54,7 +54,7 @@ namespace ConnectionSettings
class Connection : public TQObject, DBus::ConnectionNode
{
Q_OBJECT
TQ_OBJECT
public:
Connection();
virtual ~Connection();

@ -49,7 +49,7 @@ namespace ConnectionSettings
class ConnectionDBus : public TQObject, public DBus::Connection
{
Q_OBJECT
TQ_OBJECT
public:
ConnectionDBus(ConnectionSettings::Connection* parent);
~ConnectionDBus();

@ -46,7 +46,7 @@ namespace ConnectionSettings
class ConnectionEditorImpl : public ConnectionEditor
{
Q_OBJECT
TQ_OBJECT
public:
ConnectionEditorImpl(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
~ConnectionEditorImpl();

@ -50,7 +50,7 @@ namespace ConnectionSettings
class ConnectionSecretsDBus : public TQObject, public DBus::Secrets
{
Q_OBJECT
TQ_OBJECT
public:
ConnectionSecretsDBus(ConnectionSettings::Connection* parent);
virtual ~ConnectionSecretsDBus();

@ -44,7 +44,7 @@ class Connection;
class ConnectionSetting : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
ConnectionSetting(Connection* conn, TQString type, const char* name = 0, bool enabled = true);
ConnectionSetting(const ConnectionSetting&);

@ -46,7 +46,7 @@ class Connection;
class CDMAWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
CDMAWidgetImpl(Connection* conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -46,7 +46,7 @@ class Connection;
class GSMWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
GSMWidgetImpl(Connection* conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -45,7 +45,7 @@ class Connection;
class InfoWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
InfoWidgetImpl(Connection* conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -40,7 +40,7 @@ namespace ConnectionSettings
class IPv4WidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
IPv4WidgetImpl(Connection* conn, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);

@ -46,7 +46,7 @@ class Connection;
class PPPWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
PPPWidgetImpl(Connection* conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -46,7 +46,7 @@ class Connection;
class SerialWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
SerialWidgetImpl(Connection* conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -46,7 +46,7 @@ class Connection;
class VPNWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
VPNWidgetImpl(Connection* conn, bool new_conn, TQWidget* parent = NULL, const char* name = NULL, WFlags fl = 0);
void Activate();

@ -34,7 +34,7 @@ namespace ConnectionSettings
class WidgetInterface : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
WidgetInterface(TQWidget* parent = NULL, const char* name = 0, WFlags fl = 0);
virtual void Activate() = 0;

@ -51,7 +51,7 @@ namespace ConnectionSettings
class WirelessSecurityWEPImpl : public ConnectionSettingWirelessSecurityWEP
{
Q_OBJECT
TQ_OBJECT
public:
enum WEPKEY_TYPE
{
@ -84,7 +84,7 @@ namespace ConnectionSettings
class WirelessSecurityWEPEncryptionImpl : public ConnectionSettingWirelessSecurityWEPEncryption
{
Q_OBJECT
TQ_OBJECT
public:
WirelessSecurityWEPEncryptionImpl(WirelessSecurity* security_setting, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);
private:
@ -94,7 +94,7 @@ namespace ConnectionSettings
class WirelessSecurityWPAVersionImpl : public ConnectionSettingWirelessSecurityWPAVersion
{
Q_OBJECT
TQ_OBJECT
public:
WirelessSecurityWPAVersionImpl(WirelessSecurity* security_setting, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);
@ -111,7 +111,7 @@ namespace ConnectionSettings
class WirelessSecurityWPACipherImpl : public ConnectionSettingWirelessSecurityWPACipher
{
Q_OBJECT
TQ_OBJECT
private:
enum WPA_CIPHERS
{
@ -139,7 +139,7 @@ namespace ConnectionSettings
class WirelessSecurityWPAPSKImpl : public ConnectionSettingWirelessSecurityWPAPSK
{
Q_OBJECT
TQ_OBJECT
public:
WirelessSecurityWPAPSKImpl(WirelessSecurity* security_setting, Wireless* wireless_setting, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);
TQCString String2Hex(TQByteArray bytes, int final_len) const;
@ -155,7 +155,7 @@ namespace ConnectionSettings
class WirelessSecurityEAPImpl : public ConnectionSettingWirelessSecurityEAP
{
Q_OBJECT
TQ_OBJECT
public:
WirelessSecurityEAPImpl(IEEE8021x* security_setting, WirelessSecurityPhase2Impl* phase2_widget, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);
@ -175,7 +175,7 @@ namespace ConnectionSettings
class WirelessSecurityPhase2Impl : public ConnectionSettingWirelessSecurityPhase2
{
Q_OBJECT
TQ_OBJECT
public:
WirelessSecurityPhase2Impl(IEEE8021x* security_setting, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);
public slots:
@ -192,7 +192,7 @@ namespace ConnectionSettings
class WirelessSecurityWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
private:
enum SecurityMethods
{

@ -42,7 +42,7 @@ namespace ConnectionSettings
class WirelessWidgetImpl : public WidgetInterface
{
Q_OBJECT
TQ_OBJECT
public:
WirelessWidgetImpl(Connection* conn, bool new_conn, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0);

@ -46,7 +46,7 @@ namespace ConnectionSettings
class ConnectionSettingsDialogImpl : public ConnectionSettingsDialog
{
Q_OBJECT
TQ_OBJECT
public:
ConnectionSettingsDialogImpl(ConnectionSettings::Connection* conn, bool new_conn, ConnectionSettings::ConnectionSetting* setting = NULL, TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
~ConnectionSettingsDialogImpl();

@ -39,7 +39,7 @@ using namespace ConnectionSettings;
class ConnectionStore : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
static ConnectionStore* getInstance();

@ -41,7 +41,7 @@ class DevicePrivate;
class Device : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
Device (const TQString & obj_path );
~Device ();

@ -54,7 +54,7 @@ class DeviceTrayPrivate;
class DeviceTray : public KSystemTray
{
Q_OBJECT
TQ_OBJECT
public:
DeviceTray (Device*);

@ -35,7 +35,7 @@ class Device;
class DeviceStore : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
static DeviceStore* getInstance();

@ -44,7 +44,7 @@ namespace ConnectionSettings
class GenericConnection : public Connection
{
Q_OBJECT
TQ_OBJECT
public:
GenericConnection(const TQString&);
TQString getType();

@ -36,7 +36,7 @@ namespace ConnectionSettings
class GSMConnection : public PPPConnection
{
Q_OBJECT
TQ_OBJECT
public:
GSMConnection();
~GSMConnection();

@ -39,7 +39,7 @@ class GSMDevicePrivate;
class GSMDevice : public CellularDevice
{
Q_OBJECT
TQ_OBJECT
public:
GSMDevice (const TQString & obj_path );
~GSMDevice ();

@ -49,7 +49,7 @@ class HalDeviceProxyPrivate;
class HalDeviceProxy : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
HalDeviceProxy (const TQString & udi);
~HalDeviceProxy ();

@ -39,7 +39,7 @@ namespace ConnectionSettings
class NetworkMenuItem : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
NetworkMenuItem (Device* dev, ConnectionSettings::Connection* conn, TQObject* parent = 0, const char* name = 0);
~NetworkMenuItem ();

@ -37,7 +37,7 @@ class NMProxyPrivate;
class NMProxy : public DBus::NetworkManagerProxy
{
Q_OBJECT
TQ_OBJECT
public:
static NMProxy* getInstance();

@ -37,7 +37,7 @@ class NMVPNProxyPrivate;
class NMVPNProxy : public DBus::NetworkManagerVPNProxy
{
Q_OBJECT
TQ_OBJECT
public:
static NMVPNProxy* getInstance();

@ -37,7 +37,7 @@ class NMSettingsPrivate;
class NMSettings : public TQObject, DBus::SettingsInterface
{
Q_OBJECT
TQ_OBJECT
public:
/* get singleton */
static NMSettings* getInstance();

@ -30,7 +30,7 @@
class Plugin : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
Plugin(TQObject*, const char*, const TQStringList&);
~Plugin();

@ -39,7 +39,7 @@ typedef TQMap<KPluginInfo*, Plugin*> PluginMap;
class PluginManager : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
PluginManager(TQObject*, const char*);
~PluginManager();

@ -38,7 +38,7 @@ namespace ConnectionSettings
class PPPConnection : public GenericConnection
{
Q_OBJECT
TQ_OBJECT
public:
PPPConnection(const TQString& infoName);
~PPPConnection();

@ -42,7 +42,7 @@ class StoragePrivate;
class Storage : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
// Singleton

@ -67,7 +67,7 @@ class TQLabel;
class Tray : public KSystemTray
{
Q_OBJECT
TQ_OBJECT
public:
Tray ();
@ -122,7 +122,7 @@ class Tray : public KSystemTray
class NewSecretsDialog : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:
NewSecretsDialog(ConnectionSettings::Connection* connection, TQWidget * parent, const char * name, bool modal = false, TQt::WFlags f = 0);

@ -42,7 +42,7 @@ namespace ConnectionSettings
class VPNConnection : public GenericConnection
{
Q_OBJECT
TQ_OBJECT
public:
VPNConnection();

@ -39,7 +39,7 @@ class VPNDevicePrivate;
class VPNDevice : public Device
{
Q_OBJECT
TQ_OBJECT
public:
VPNDevice (const TQString & obj_path );
~VPNDevice ();

@ -39,7 +39,7 @@ class VPNDBUSPluginPrivate;
class VPNDBUSPlugin : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VPNDBUSPlugin ();
~VPNDBUSPlugin ();

@ -47,7 +47,7 @@ namespace ConnectionSettings
class VPNAuthenticationDialog : public AuthenticationDialog
{
Q_OBJECT
TQ_OBJECT
public:
VPNAuthenticationDialog(ConnectionSettings::VPNConnection* conn = NULL, TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
~VPNAuthenticationDialog();

@ -43,7 +43,7 @@ typedef TQValueList<VPNService*> VPNServiceList;
class VPNManager : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
static VPNService* getVPNService(TQString);

@ -36,7 +36,7 @@
class VPNConfigWidget : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
virtual ~VPNConfigWidget();
VPNConfigWidget(TQWidget* parent = NULL, const char* name = NULL);
@ -51,7 +51,7 @@ class VPNConfigWidget : public TQWidget
class VPNAuthenticationWidget : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
virtual ~VPNAuthenticationWidget();
VPNAuthenticationWidget(TQWidget* parent = NULL, const char* name = NULL);
@ -65,7 +65,7 @@ class VPNAuthenticationWidget : public TQWidget
class VPNPlugin : public Plugin
{
Q_OBJECT
TQ_OBJECT
public:
VPNPlugin(TQObject*, const char*, const TQStringList&);
virtual ~VPNPlugin();

@ -42,7 +42,7 @@ class KConfigGroup;
class VPNService : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
VPNService(const TQString& serviceName, const TQString& service, TQObject* parent, const char* name = 0);

@ -43,7 +43,7 @@ namespace ConnectionSettings
class WiredConnection : public GenericConnection
{
Q_OBJECT
TQ_OBJECT
public:
WiredConnection();

@ -39,7 +39,7 @@ class WiredDevicePrivate;
class WiredDevice : public Device
{
Q_OBJECT
TQ_OBJECT
public:
WiredDevice (const TQString & obj_path );
~WiredDevice ();

@ -39,7 +39,7 @@ class WiredDeviceTrayPrivate;
class WiredDeviceTray : public DeviceTrayComponent
{
Q_OBJECT
TQ_OBJECT
public:
WiredDeviceTray (WiredDevice*, KSystemTray * parent = 0, const char * name = 0);

@ -46,7 +46,7 @@ namespace ConnectionSettings
class WirelessConnection : public GenericConnection
{
Q_OBJECT
TQ_OBJECT
public:
WirelessConnection();

@ -40,7 +40,7 @@ class WirelessDevicePrivate;
class WirelessDevice : public Device
{
Q_OBJECT
TQ_OBJECT
public:
WirelessDevice (const TQString & obj_path );
~WirelessDevice ();

@ -45,7 +45,7 @@ namespace ConnectionSettings
class WirelessDeviceTray : public DeviceTrayComponent
{
Q_OBJECT
TQ_OBJECT
public:
WirelessDeviceTray (WirelessDevice*, KSystemTray * parent = 0, const char * name = 0);

@ -50,7 +50,7 @@
class WirelessNetworkItem : public NetworkMenuItem, public TQCustomMenuItem
{
Q_OBJECT
TQ_OBJECT
public:
WirelessNetworkItem (TQWidget*, Device* dev, WirelessNetwork& net, ConnectionSettings::WirelessConnection* conn, bool adhoc);
WirelessNetworkItem (TQWidget*, Device* dev, WirelessNetwork& net, bool adhoc);

@ -37,7 +37,7 @@ class Device;
class KNetworkManager : public KUniqueApplication
{
Q_OBJECT
TQ_OBJECT
public:
KNetworkManager ();

@ -36,7 +36,7 @@
class SecretStoragePlugin : public Plugin
{
Q_OBJECT
TQ_OBJECT
public:
SecretStoragePlugin(TQObject*, const char*, const TQStringList&);
virtual ~SecretStoragePlugin();

@ -34,7 +34,7 @@ class KSystemTray;
class TrayComponent : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
TrayComponent(KSystemTray * parent, const char * name );
virtual ~TrayComponent();

@ -33,7 +33,7 @@
class VPNTrayComponent : public TrayComponent
{
Q_OBJECT
TQ_OBJECT
public:
VPNTrayComponent (KSystemTray * parent = 0, const char * name = 0);

@ -38,7 +38,7 @@
class OpenVPNPlugin : public VPNPlugin
{
Q_OBJECT
TQ_OBJECT
public:
OpenVPNPlugin(TQObject*, const char*, const TQStringList&);
~OpenVPNPlugin();
@ -66,7 +66,7 @@ class OpenVPNConnectionType
class OpenVPNConfig : public VPNConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
void setVPNData(const TQStringList& routes, const TQMap<TQString, TQString>& properties);
TQMap<TQString, TQString> getVPNProperties();
@ -93,7 +93,7 @@ class OpenVPNConfig : public VPNConfigWidget
class OpenVPNAuthentication : public VPNAuthenticationWidget
{
Q_OBJECT
TQ_OBJECT
public:
OpenVPNAuthentication(TQWidget* parent = NULL, char* name = NULL);
~OpenVPNAuthentication();

@ -37,7 +37,7 @@
class PPTPPlugin : public VPNPlugin
{
Q_OBJECT
TQ_OBJECT
public:
PPTPPlugin(TQObject*, const char*, const TQStringList&);
~PPTPPlugin();
@ -49,7 +49,7 @@ class PPTPPlugin : public VPNPlugin
class PPTPConfig : public VPNConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
void setVPNData(const TQStringList& routes, const TQMap<TQString, TQString>& properties);
TQMap<TQString, TQString> getVPNProperties();
@ -70,7 +70,7 @@ class PPTPConfig : public VPNConfigWidget
class PPTPAuthentication : public VPNAuthenticationWidget
{
Q_OBJECT
TQ_OBJECT
public:
PPTPAuthentication(TQWidget* parent = NULL, char* name = NULL);
~PPTPAuthentication();

@ -37,7 +37,7 @@
class StrongswanPlugin : public VPNPlugin
{
Q_OBJECT
TQ_OBJECT
public:
StrongswanPlugin(TQObject*, const char*, const TQStringList&);
~StrongswanPlugin();
@ -64,7 +64,7 @@ class StrongswanConnectionType
class StrongswanConfig : public VPNConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
void setVPNData(const TQStringList& routes, const TQMap<TQString, TQString>& properties);
TQMap<TQString, TQString> getVPNProperties();
@ -85,7 +85,7 @@ class StrongswanConfig : public VPNConfigWidget
class StrongswanAuthentication : public VPNAuthenticationWidget
{
Q_OBJECT
TQ_OBJECT
public:
StrongswanAuthentication(TQWidget* parent = NULL, char* name = NULL);
~StrongswanAuthentication();

@ -38,7 +38,7 @@
class VPNCPlugin : public VPNPlugin
{
Q_OBJECT
TQ_OBJECT
public:
VPNCPlugin(TQObject*, const char*, const TQStringList&);
~VPNCPlugin();
@ -50,7 +50,7 @@ class VPNCPlugin : public VPNPlugin
class VPNCConfig : public VPNConfigWidget
{
Q_OBJECT
TQ_OBJECT
public:
void setVPNData(const TQStringList& routes, const TQMap<TQString, TQString>& properties);
TQMap<TQString, TQString> getVPNProperties();
@ -75,7 +75,7 @@ class VPNCConfig : public VPNConfigWidget
class VPNCAuthentication : public VPNAuthenticationWidget
{
Q_OBJECT
TQ_OBJECT
public:
VPNCAuthentication(TQWidget* parent = NULL, char* name = NULL);
~VPNCAuthentication();

Loading…
Cancel
Save