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/converter/webpricequote.h | |
parent | beb601ba284823aad53b04213fdd7741c4832de5 (diff) | |
download | kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.tar.gz kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.zip |
Remove spurious TQ_OBJECT instances
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 377ba8d..ac4402d 100644 --- a/kmymoney2/converter/webpricequote.h +++ b/kmymoney2/converter/webpricequote.h @@ -48,7 +48,7 @@ of a local script being used to fetch the quote. class WebPriceQuoteProcess: public KProcess { Q_OBJECT - TQ_OBJECT + public: WebPriceQuoteProcess(void); void setSymbol(const TQString& _symbol) { m_symbol = _symbol; m_string.truncate(0); } @@ -76,7 +76,7 @@ by the Finance::Quote package, and more user-friendly names. class FinanceQuoteProcess: public KProcess { Q_OBJECT - TQ_OBJECT + public: FinanceQuoteProcess(void); void launch (const TQString& scriptPath); @@ -130,7 +130,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 ); ~WebPriceQuote(); @@ -233,7 +233,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); ~QuoteReceiver(); |