From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/usbview/usbdevices.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'kcontrol/usbview/usbdevices.h') diff --git a/kcontrol/usbview/usbdevices.h b/kcontrol/usbview/usbdevices.h index 853df02b3..23717ee65 100644 --- a/kcontrol/usbview/usbdevices.h +++ b/kcontrol/usbview/usbdevices.h @@ -13,8 +13,8 @@ #define __USB_DEVICES_H__ -#include -#include +#include +#include #ifdef Q_OS_FREEBSD #include @@ -29,45 +29,45 @@ public: USBDevice(); - void parseLine(QString line); - void parseSysDir(int bus, int parent, int level, QString line); + void parseLine(TQString line); + void parseSysDir(int bus, int parent, int level, TQString line); int level() { return _level; }; int device() { return _device; }; int parent() { return _parent; }; int bus() { return _bus; }; - QString product(); + TQString product(); - QString dump(); + TQString dump(); - static QPtrList &devices() { return _devices; }; + static TQPtrList &devices() { return _devices; }; static USBDevice *find(int bus, int device); - static bool parse(QString fname); - static bool parseSys(QString fname); + static bool parse(TQString fname); + static bool parseSys(TQString fname); private: - static QPtrList _devices; + static TQPtrList _devices; static USBDB *_db; int _bus, _level, _parent, _port, _count, _device, _channels, _power; float _speed; - QString _manufacturer, _product, _serial; + TQString _manufacturer, _product, _serial; int _bwTotal, _bwUsed, _bwPercent, _bwIntr, _bwIso; bool _hasBW; unsigned int _verMajor, _verMinor, _class, _sub, _prot, _maxPacketSize, _configs; - QString _className; + TQString _className; unsigned int _vendorID, _prodID, _revMajor, _revMinor; #ifdef Q_OS_FREEBSD void collectData( int fd, int level, usb_device_info &di, int parent ); - QStringList _devnodes; + TQStringList _devnodes; #endif }; -- cgit v1.2.1