diff options
Diffstat (limited to 'kget/settings.h')
-rw-r--r-- | kget/settings.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kget/settings.h b/kget/settings.h index c66b00e6..7c02b166 100644 --- a/kget/settings.h +++ b/kget/settings.h @@ -31,7 +31,7 @@ // common connection types enum ConnectionType { PERMANENT = 0, ETHERNET, PLIP, SLIP, PPP, ISDN }; -extern QString ConnectionDevices[]; +extern TQString ConnectionDevices[]; // Connection settings @@ -86,17 +86,17 @@ extern QString ConnectionDevices[]; #define DEF_WindowStyle NORMAL -#include <qdatetime.h> +#include <tqdatetime.h> #include <kwin.h> -#include <qvaluelist.h> +#include <tqvaluelist.h> struct DirItem { - QString extRegexp; - QString defaultDir; + TQString extRegexp; + TQString defaultDir; }; -typedef QValueList < DirItem > DirList; +typedef TQValueList < DirItem > DirList; class Settings { @@ -133,10 +133,10 @@ public: bool b_autoSave; uint autoSaveInterval; bool b_autoDisconnect; - QString disconnectCommand; + TQString disconnectCommand; bool b_timedDisconnect; - QDate disconnectDate; - QTime disconnectTime; + TQDate disconnectDate; + TQTime disconnectTime; bool b_autoShutdown; bool b_autoPaste; @@ -163,21 +163,21 @@ public: // directories options bool b_useLastDir; - QString lastDirectory; + TQString lastDirectory; DirList defaultDirList; // system options bool b_useAnimation; - QFont listViewFont; + TQFont listViewFont; // geometry settings - QPoint mainPosition; - QSize mainSize; + TQPoint mainPosition; + TQSize mainSize; unsigned long int mainState; - QPoint dropPosition; + TQPoint dropPosition; unsigned long int dropState; }; |