diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/usbview/usbdb.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/usbview/usbdb.h')
-rw-r--r-- | kcontrol/usbview/usbdb.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kcontrol/usbview/usbdb.h b/kcontrol/usbview/usbdb.h index 2b4226937..0b8c9f550 100644 --- a/kcontrol/usbview/usbdb.h +++ b/kcontrol/usbview/usbdb.h @@ -13,7 +13,7 @@ #define __USB_DB_H__ -#include <qdict.h> +#include <tqdict.h> class USBDB @@ -22,16 +22,16 @@ public: USBDB(); - QString vendor(int id); - QString device(int vendor, int id); + TQString vendor(int id); + TQString device(int vendor, int id); - QString cls(int cls); - QString subclass(int cls, int sub); - QString protocol(int cls, int sub, int prot); + TQString cls(int cls); + TQString subclass(int cls, int sub); + TQString protocol(int cls, int sub, int prot); private: - QDict<QString> _classes, _ids; + TQDict<TQString> _classes, _ids; }; |