summaryrefslogtreecommitdiffstats
path: root/kbabel/common/projectsettings.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/common/projectsettings.h')
-rw-r--r--kbabel/common/projectsettings.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/kbabel/common/projectsettings.h b/kbabel/common/projectsettings.h
index 186b21e5..49afc0a6 100644
--- a/kbabel/common/projectsettings.h
+++ b/kbabel/common/projectsettings.h
@@ -35,10 +35,10 @@
#ifndef PROJECTSETTINGS_H
#define PROJECTSETTINGS_H
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qfont.h>
-#include <qcolor.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqfont.h>
+#include <tqcolor.h>
#include <kurl.h>
#include "catalogsettings.h"
@@ -54,10 +54,10 @@ struct SpellcheckSettings
bool runTogether;
int spellEncoding;
int spellClient;
- QString spellDict;
+ TQString spellDict;
bool rememberIgnored;
- QString ignoreURL;
+ TQString ignoreURL;
bool onFlySpellcheck;
@@ -66,17 +66,17 @@ struct SpellcheckSettings
struct CatManSettings
{
- QString poBaseDir;
- QString potBaseDir;
+ TQString poBaseDir;
+ TQString potBaseDir;
bool openWindow;
- QStringList dirCommands;
- QStringList dirCommandNames;
- QStringList fileCommands;
- QStringList fileCommandNames;
+ TQStringList dirCommands;
+ TQStringList dirCommandNames;
+ TQStringList fileCommands;
+ TQStringList fileCommandNames;
- QString ignoreURL;
+ TQString ignoreURL;
bool killCmdOnExit;
bool indexWords;
@@ -99,16 +99,16 @@ struct SourceContextSettings
* A path, which can be used as @CODEROOT@ variable in @ref sourcePaths .
* Defaults to empty string.
*/
- QString codeRoot;
+ TQString codeRoot;
/**
* List of paths, where the source file should be lookup. Can use @CODEROOT@ (replaced by @ref codeRoot),
* @PACKAGE@ (replaced by package name), @PACKAGEDIR@ (replaced by the
* longest known path of the package) and @COMMENTPATH@ (path extracted from comment specs.
*/
- QStringList sourcePaths;
+ TQStringList sourcePaths;
- void SourceContextSettins() { codeRoot = QString::null; sourcePaths.clear(); }
+ void SourceContextSettins() { codeRoot = TQString::null; sourcePaths.clear(); }
};
/**
@@ -120,11 +120,11 @@ namespace Defaults
class KDE_EXPORT Spellcheck
{
public:
- static QString ignoreURL();
+ static TQString ignoreURL();
static bool noRootAffix();
static bool runTogether();
static int spellClient();
- static QString spellDictionary();
+ static TQString spellDictionary();
static int spellEncoding();
private:
static KSpellConfig* defaultsettings;
@@ -133,7 +133,7 @@ namespace Defaults
class KDE_EXPORT CatalogManager
{
public:
- static QString ignoreURL();
+ static TQString ignoreURL();
};
}