diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-05 17:12:16 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-05 17:12:16 +0000 |
commit | dba26cb985af370c33d1767037851705cc561726 (patch) | |
tree | c231c72d29c1d10b90560979e71b7499743359b6 | |
parent | 4c7c543902cc8bd03c6a2ded06f27d6b93cf1316 (diff) | |
download | tdenetwork-dba26cb985af370c33d1767037851705cc561726.tar.gz tdenetwork-dba26cb985af370c33d1767037851705cc561726.zip |
Fix missing Q_OBJECT macros
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | kopete/protocols/sms/services/kopete_unix_serial.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kopete/protocols/sms/services/kopete_unix_serial.h b/kopete/protocols/sms/services/kopete_unix_serial.h index 048e8ce8..a85fa94b 100644 --- a/kopete/protocols/sms/services/kopete_unix_serial.h +++ b/kopete/protocols/sms/services/kopete_unix_serial.h @@ -29,18 +29,19 @@ class TQSocketNotifier; namespace gsmlib { - + class KopeteUnixSerialPort : public TQObject, public Port { - TQ_OBJECT; - + Q_OBJECT + TQ_OBJECT + protected: int _fd; // file descriptor for device int _oldChar; // character set by putBack() (-1 == none) long int _timeoutVal; // timeout for getLine/readByte TQSocketNotifier* _readNotifier; - + // throw GsmException include UNIX errno void throwModemException(std::string message) throw(GsmException); |