aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/filters/thmlstrongs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/filters/thmlstrongs.cpp')
-rw-r--r--src/modules/filters/thmlstrongs.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/filters/thmlstrongs.cpp b/src/modules/filters/thmlstrongs.cpp
index ab5a3eb..f7817cb 100644
--- a/src/modules/filters/thmlstrongs.cpp
+++ b/src/modules/filters/thmlstrongs.cpp
@@ -16,6 +16,8 @@
#endif
#include <ctype.h>
+SWORD_NAMESPACE_START
+
const char ThMLStrongs::on[] = "On";
const char ThMLStrongs::off[] = "Off";
const char ThMLStrongs::optName[] = "Strong's Numbers";
@@ -55,7 +57,7 @@ char ThMLStrongs::ProcessText(char *text, int maxlen, const SWKey *key, const SW
char *valto;
char *ch;
char *textStart = text, *textEnd = 0;
- string tmp;
+ std::string tmp;
bool newText = false;
len = strlen(text) + 1; // shift string to right of buffer
@@ -154,3 +156,5 @@ char ThMLStrongs::ProcessText(char *text, int maxlen, const SWKey *key, const SW
*to = 0;
return 0;
}
+
+SWORD_NAMESPACE_END