diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 18:16:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 18:16:06 +0000 |
commit | 02a6c8f36311eb6225066df35adf8d00f9cd942b (patch) | |
tree | ceb91c373877f7a69209e184c81b53dc6f9402d7 /src/common | |
parent | 09e6e27fe85b2efb28072f1c81f6581fa6837d92 (diff) | |
download | knemo-02a6c8f36311eb6225066df35adf8d00f9cd942b.tar.gz knemo-02a6c8f36311eb6225066df35adf8d00f9cd942b.zip |
TQt4 port knemo
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/knemo@1238869 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/data.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/data.h b/src/common/data.h index e8de9a2..68c82db 100644 --- a/src/common/data.h +++ b/src/common/data.h @@ -20,8 +20,8 @@ #ifndef DATA_H #define DATA_H -#include <qstring.h> -#include <qvaluevector.h> +#include <tqstring.h> +#include <tqvaluevector.h> /** * This file contains data structures used to store information about @@ -36,8 +36,8 @@ struct InterfaceCommand { int id; bool runAsRoot; - QString command; - QString menuText; + TQString command; + TQString menuText; }; struct InterfaceSettings @@ -59,8 +59,8 @@ struct InterfaceSettings bool hideWhenNotAvailable; bool activateStatistics; bool customCommands; - QString alias; - QValueVector<InterfaceCommand> commands; + TQString alias; + TQValueVector<InterfaceCommand> commands; }; enum ToolTipEnums @@ -82,7 +82,7 @@ enum ToolTipEnums FREQUENCY = 0x00004000, BIT_RATE = 0x00008000, ACCESS_POINT = 0x00010000, - LINK_QUALITY = 0x00020000, + LINK_TQUALITY = 0x00020000, BCAST_ADDRESS = 0x00040000, GATEWAY = 0x00080000, DOWNLOAD_SPEED = 0x00100000, |