summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-09-23 00:43:43 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-09-23 00:43:43 +0200
commite03da7a558d79e399e3704a5b2f35646e92dacb7 (patch)
treee9948950e8947f6978fa3270605d04f94216515b /src/utils.h
parentb9d8d75902c4603fa10c63735873816556a7468c (diff)
downloadtdeio-sword-e03da7a558d79e399e3704a5b2f35646e92dacb7.tar.gz
tdeio-sword-e03da7a558d79e399e3704a5b2f35646e92dacb7.zip
Initial TQt conversion
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/utils.h b/src/utils.h
index b97124c..0df24d1 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -24,7 +24,7 @@
#ifndef UTILS_H
#define UTILS_H
-#include <qstring.h>
+#include <ntqstring.h>
namespace KioSword {
class SwordOptions;
@@ -42,14 +42,14 @@ namespace KioSword {
extern const char* GREEKMORPH_STR;
extern const char* HEBREWMORPH_STR;
- QString optionsAsHiddenFields(const SwordOptions& options);
- QString swordUrl(const QString& path, const SwordOptions& options, bool htmlEncodeOutput = true);
- QString swordUrl(const QString& module, const QString& ref, const SwordOptions& options, bool htmlEncodeOutput = true);
- QString swordUrlForPage(const QString& page, const SwordOptions& options, bool htmlEncodeOutput = true);
- QString swordUrlForSettings(const QString& path, const SwordOptions& options, bool htmlEncodeOutput = true);
- QString swordUrlForSearch(DefModuleType modType, const QString& searchQuery, const SwordOptions& options, bool htmlEncodeOutput = true);
- QString swordUrlForSearch(DefModuleType modType, const QString& searchQuery, const SwordOptions* options, bool htmlEncodeOutput = true);
- QString shorten(const QString& ref, uint len);
+ TQString optionsAsHiddenFields(const SwordOptions& options);
+ TQString swordUrl(const TQString& path, const SwordOptions& options, bool htmlEncodeOutput = true);
+ TQString swordUrl(const TQString& module, const TQString& ref, const SwordOptions& options, bool htmlEncodeOutput = true);
+ TQString swordUrlForPage(const TQString& page, const SwordOptions& options, bool htmlEncodeOutput = true);
+ TQString swordUrlForSettings(const TQString& path, const SwordOptions& options, bool htmlEncodeOutput = true);
+ TQString swordUrlForSearch(DefModuleType modType, const TQString& searchQuery, const SwordOptions& options, bool htmlEncodeOutput = true);
+ TQString swordUrlForSearch(DefModuleType modType, const TQString& searchQuery, const SwordOptions* options, bool htmlEncodeOutput = true);
+ TQString shorten(const TQString& ref, uint len);
}
#endif