diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:36:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-24 21:24:01 +0900 |
commit | 93816e0a2c4477711497263902fe5222483da892 (patch) | |
tree | 662803755443085144e615fae1678f2755eda8fd /kmymoney2/converter/webpricequote.h | |
parent | 7a469553db421dbc62a6eca20fd81fe6fc7bb01a (diff) | |
download | kmymoney-93816e0a2c4477711497263902fe5222483da892.tar.gz kmymoney-93816e0a2c4477711497263902fe5222483da892.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4a70f1720eb66ddeb89d4340e44c601e3613b837)
Diffstat (limited to 'kmymoney2/converter/webpricequote.h')
-rw-r--r-- | kmymoney2/converter/webpricequote.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/converter/webpricequote.h b/kmymoney2/converter/webpricequote.h index 0a94ce5..e32e638 100644 --- a/kmymoney2/converter/webpricequote.h +++ b/kmymoney2/converter/webpricequote.h @@ -47,7 +47,7 @@ of a local script being used to fetch the quote. */ class WebPriceQuoteProcess: public TDEProcess { - Q_OBJECT + TQ_OBJECT public: WebPriceQuoteProcess(void); @@ -75,7 +75,7 @@ by the Finance::Quote package, and more user-friendly names. */ class FinanceQuoteProcess: public TDEProcess { - Q_OBJECT + TQ_OBJECT public: FinanceQuoteProcess(void); @@ -129,7 +129,7 @@ Retrieves a price quote from a web-based quote source */ class WebPriceQuote: public TQObject { - Q_OBJECT + TQ_OBJECT public: WebPriceQuote( TQObject* = 0, const char* = 0 ); @@ -232,7 +232,7 @@ Simple class to handle signals/slots for unit tests */ class QuoteReceiver : public TQObject { -Q_OBJECT +TQ_OBJECT public: QuoteReceiver(WebPriceQuote* q, TQObject *parent = 0, const char *name = 0); |