summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/include/Text.h
diff options
context:
space:
mode:
Diffstat (limited to 'FoundationEx/include/Text.h')
-rw-r--r--FoundationEx/include/Text.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FoundationEx/include/Text.h b/FoundationEx/include/Text.h
index 851cadf..c40c636 100644
--- a/FoundationEx/include/Text.h
+++ b/FoundationEx/include/Text.h
@@ -124,9 +124,9 @@ public:
void toUpper();
// substring
- Text substring(int start, int length);
- Text trim();
- Text replace(const char* pattern, const char* substitution);
+ Text substring(int start, int length) const;
+ Text trim() const;
+ Text replace(const char* pattern, const char* substitution) const;
Text concat(const char* tail) const;
static Text format(const char* fmt, ...);