diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:52 -0600 |
commit | 8c5a639e214aa9c24ee2cbaec83f428ed46ffa64 (patch) | |
tree | 3cd4df65f0a57477130894aef4c5970161853460 /kmymoney2/plugins/ofximport | |
parent | beb601ba284823aad53b04213fdd7741c4832de5 (diff) | |
download | kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.tar.gz kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kmymoney2/plugins/ofximport')
5 files changed, 6 insertions, 6 deletions
diff --git a/kmymoney2/plugins/ofximport/dialogs/kofxdirectconnectdlg.h b/kmymoney2/plugins/ofximport/dialogs/kofxdirectconnectdlg.h index 1227a90..b0025e3 100644 --- a/kmymoney2/plugins/ofximport/dialogs/kofxdirectconnectdlg.h +++ b/kmymoney2/plugins/ofximport/dialogs/kofxdirectconnectdlg.h @@ -49,7 +49,7 @@ class TransferJob; class KOfxDirectConnectDlg : public KOfxDirectConnectDlgDecl { Q_OBJECT - TQ_OBJECT + public: KOfxDirectConnectDlg(const MyMoneyAccount&, TQWidget *parent = 0, const char *name = 0); ~KOfxDirectConnectDlg(); diff --git a/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.h b/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.h index 35b010c..b40fa69 100644 --- a/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.h +++ b/kmymoney2/plugins/ofximport/dialogs/konlinebankingsetupwizard.h @@ -61,7 +61,7 @@ class OfxHeaderVersion; class KOnlineBankingSetupWizard : public KOnlineBankingSetupDecl { Q_OBJECT - TQ_OBJECT + public: class ListViewItem: public MyMoneyKeyValueContainer, public TQListViewItem { diff --git a/kmymoney2/plugins/ofximport/dialogs/konlinebankingstatus.h b/kmymoney2/plugins/ofximport/dialogs/konlinebankingstatus.h index 3b04903..578f7f7 100644 --- a/kmymoney2/plugins/ofximport/dialogs/konlinebankingstatus.h +++ b/kmymoney2/plugins/ofximport/dialogs/konlinebankingstatus.h @@ -44,7 +44,7 @@ class OfxHeaderVersion; class KOnlineBankingStatus : public KOnlineBankingStatusDecl { Q_OBJECT - TQ_OBJECT + public: KOnlineBankingStatus(const MyMoneyAccount& acc, TQWidget *parent=0, const char *name=0); ~KOnlineBankingStatus(); diff --git a/kmymoney2/plugins/ofximport/ofximporterplugin.h b/kmymoney2/plugins/ofximport/ofximporterplugin.h index 04a4892..417d63a 100644 --- a/kmymoney2/plugins/ofximport/ofximporterplugin.h +++ b/kmymoney2/plugins/ofximport/ofximporterplugin.h @@ -43,7 +43,7 @@ class KOnlineBankingStatus; class OfxImporterPlugin : public KMyMoneyPlugin::Plugin, public KMyMoneyPlugin::ImporterPlugin, public KMyMoneyPlugin::OnlinePlugin { Q_OBJECT - TQ_OBJECT + public: OfxImporterPlugin(TQObject *parent = 0, const char *name = 0, const TQStringList& = TQStringList()); diff --git a/kmymoney2/plugins/ofximport/ofxpartner.h b/kmymoney2/plugins/ofximport/ofxpartner.h index 84f4d2a..6367884 100644 --- a/kmymoney2/plugins/ofximport/ofxpartner.h +++ b/kmymoney2/plugins/ofximport/ofxpartner.h @@ -61,7 +61,7 @@ namespace OfxPartner class OfxHttpRequest : public TQObject { Q_OBJECT - TQ_OBJECT + public: OfxHttpRequest(const TQString& method, const KURL &url, const TQByteArray &postData, const TQMap<TQString, TQString>& metaData, const KURL& dst, bool showProgressInfo=true); virtual ~OfxHttpRequest() {} @@ -81,7 +81,7 @@ private: class OfxHttpsRequest : public TQObject { Q_OBJECT - TQ_OBJECT + public: OfxHttpsRequest(const TQString& method, const KURL &url, const TQByteArray &postData, const TQMap<TQString, TQString>& metaData, const KURL& dst, bool showProgressInfo=true); virtual ~OfxHttpsRequest(); |