diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /klaptopdaemon/kpcmcia.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'klaptopdaemon/kpcmcia.h')
-rw-r--r-- | klaptopdaemon/kpcmcia.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/klaptopdaemon/kpcmcia.h b/klaptopdaemon/kpcmcia.h index c821926..4e55ca6 100644 --- a/klaptopdaemon/kpcmcia.h +++ b/klaptopdaemon/kpcmcia.h @@ -25,7 +25,7 @@ class QTimer; class KPCMCIA; -#include <qmemarray.h> +#include <tqmemarray.h> #include <sys/types.h> @@ -45,12 +45,12 @@ protected: int _fd; int _interrupt; - QString _device, _ports; - QString _module; - QString _cardname; - QString _type; + TQString _device, _ports; + TQString _module; + TQString _cardname; + TQString _type; int _vcc, _vpp, _vpp2; - QString _stabPath; + TQString _stabPath; int _iotype; int _inttype; int _cfgbase; @@ -141,27 +141,27 @@ public: /** * Return the card name */ - inline QString& name() { return _cardname; } + inline TQString& name() { return _cardname; } /** * Return the port range */ - inline QString& ports() { return _ports; } + inline TQString& ports() { return _ports; } /** * Return the device name */ - inline QString& device() { return _device; } + inline TQString& device() { return _device; } /** * Return the device type (ie network, modem, etc) */ - inline QString& type() { return _type; } + inline TQString& type() { return _type; } /** * Return the driver (module) name */ - inline QString& driver() { return _module; } + inline TQString& driver() { return _module; } /** * Refresh the card information - return < 0 on error. @@ -176,7 +176,7 @@ private: -class KPCMCIA : public QObject { +class KPCMCIA : public TQObject { Q_OBJECT public: @@ -198,12 +198,12 @@ public slots: private: int _refreshSpeed; - QTimer *_timer; - QMemArray<KPCMCIACard *> *_cards; + TQTimer *_timer; + TQMemArray<KPCMCIACard *> *_cards; int _cardCnt; bool _haveCardServices; int _maxSlots; - QString _stabPath; + TQString _stabPath; }; |