diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/lluistring.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/linden/indra/llui/lluistring.h b/linden/indra/llui/lluistring.h index 4e9bb55..e8a86f4 100644 --- a/linden/indra/llui/lluistring.h +++ b/linden/indra/llui/lluistring.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /** | 1 | /** |
2 | * @file lluistring.h | 2 | * @file lluistring.h |
3 | * @author: Steve Bennetts | 3 | * @author: Steve Bennetts |
4 | * @brief LLUIString base class | 4 | * @brief A fancy wrapper for LLString supporting argument substitutions. |
5 | * | 5 | * |
6 | * $LicenseInfo:firstyear=2006&license=viewergpl$ | 6 | * $LicenseInfo:firstyear=2006&license=viewergpl$ |
7 | * | 7 | * |
@@ -33,12 +33,6 @@ | |||
33 | #ifndef LL_LLUISTRING_H | 33 | #ifndef LL_LLUISTRING_H |
34 | #define LL_LLUISTRING_H | 34 | #define LL_LLUISTRING_H |
35 | 35 | ||
36 | // lluistring.h | ||
37 | // | ||
38 | // Copyright 2006, Linden Research, Inc. | ||
39 | // Original aurthor: Steve | ||
40 | |||
41 | #include "stdtypes.h" | ||
42 | #include "llstring.h" | 36 | #include "llstring.h" |
43 | #include <string> | 37 | #include <string> |
44 | 38 | ||
@@ -89,7 +83,7 @@ public: | |||
89 | S32 length() const { return mWResult.size(); } | 83 | S32 length() const { return mWResult.size(); } |
90 | 84 | ||
91 | void clear(); | 85 | void clear(); |
92 | void clearArgs(); | 86 | void clearArgs() { mArgs.clear(); } |
93 | 87 | ||
94 | // These utuilty functions are included for text editing. | 88 | // These utuilty functions are included for text editing. |
95 | // They do not affect mOrig and do not perform argument substitution | 89 | // They do not affect mOrig and do not perform argument substitution |