Fix missing Q_OBJECT macros

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 4c7c543902
commit dba26cb985

@ -29,18 +29,19 @@
class TQSocketNotifier; class TQSocketNotifier;
namespace gsmlib namespace gsmlib
{ {
class KopeteUnixSerialPort : public TQObject, public Port class KopeteUnixSerialPort : public TQObject, public Port
{ {
TQ_OBJECT; Q_OBJECT
TQ_OBJECT
protected: protected:
int _fd; // file descriptor for device int _fd; // file descriptor for device
int _oldChar; // character set by putBack() (-1 == none) int _oldChar; // character set by putBack() (-1 == none)
long int _timeoutVal; // timeout for getLine/readByte long int _timeoutVal; // timeout for getLine/readByte
TQSocketNotifier* _readNotifier; TQSocketNotifier* _readNotifier;
// throw GsmException include UNIX errno // throw GsmException include UNIX errno
void throwModemException(std::string message) throw(GsmException); void throwModemException(std::string message) throw(GsmException);

Loading…
Cancel
Save