summaryrefslogtreecommitdiffstats
path: root/src/tdeio_sword.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tdeio_sword.cpp')
-rw-r--r--src/tdeio_sword.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tdeio_sword.cpp b/src/tdeio_sword.cpp
index 4702b9c..0e244e2 100644
--- a/src/tdeio_sword.cpp
+++ b/src/tdeio_sword.cpp
@@ -327,30 +327,30 @@ namespace KioSword
m_redirect.module = val;
}
else if (!strcasecmp(key, "modtype")) {
- if (!strcasecmp(val, "bible")) {
+ if (!strcasecmp(val.latin1(), "bible")) {
m_moduletype = DEFBIBLE;
m_action = REDIRECT_QUERY;
- } else if (!strcasecmp(val, "greekstrongs")) {
+ } else if (!strcasecmp(val.latin1(), "greekstrongs")) {
m_moduletype = GREEKSTRONGS;
m_action = REDIRECT_QUERY;
- } else if (!strcasecmp(val, "hebrewstrongs")) {
+ } else if (!strcasecmp(val.latin1(), "hebrewstrongs")) {
m_moduletype = HEBREWSTRONGS;
m_action = REDIRECT_QUERY;
- } else if (!strcasecmp(val, "greekmorph")) {
+ } else if (!strcasecmp(val.latin1(), "greekmorph")) {
m_moduletype = GREEKMORPH;
m_action = REDIRECT_QUERY;
- } else if (!strcasecmp(val, "hebrewmorph")) {
+ } else if (!strcasecmp(val.latin1(), "hebrewmorph")) {
m_moduletype = HEBREWMORPH;
m_action = REDIRECT_QUERY;
}
}
// search
else if (!strcasecmp(key, "stype")) {
- if (!strcasecmp(val, "words")) {
+ if (!strcasecmp(val.latin1(), "words")) {
m_stype = Renderer::SEARCH_WORDS;
- } else if (!strcasecmp(val, "phrase")) {
+ } else if (!strcasecmp(val.latin1(), "phrase")) {
m_stype = Renderer::SEARCH_PHRASE;
- } else if (!strcasecmp(val, "regex")) {
+ } else if (!strcasecmp(val.latin1(), "regex")) {
m_stype = Renderer::SEARCH_REGEX;
} else {
m_stype = Renderer::SEARCH_WORDS;