diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-03-19 18:28:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-03-19 18:28:10 +0000 |
commit | d223fcaba3660e8c4d61c9136311064898e23ae9 (patch) | |
tree | 58ac992b15667d814ddfd502640a54a1209e241e /src/minimacro.h | |
parent | cba6293cf22e2c2ae17dd3954ad7d097f379c7ac (diff) | |
download | libbu++-d223fcaba3660e8c4d61c9136311064898e23ae9.tar.gz libbu++-d223fcaba3660e8c4d61c9136311064898e23ae9.tar.bz2 libbu++-d223fcaba3660e8c4d61c9136311064898e23ae9.tar.xz libbu++-d223fcaba3660e8c4d61c9136311064898e23ae9.zip |
The rest of libbu++ is corrected as far as the now Bu::String toUpper/toLower
semantics go as well as switching everything to the new string formatting code.
Diffstat (limited to '')
-rw-r--r-- | src/minimacro.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/minimacro.h b/src/minimacro.h index 582e1b0..b6c7c13 100644 --- a/src/minimacro.h +++ b/src/minimacro.h | |||
@@ -105,9 +105,7 @@ namespace Bu | |||
105 | virtual Bu::String call( | 105 | virtual Bu::String call( |
106 | const Bu::String &sIn, StrList & ) | 106 | const Bu::String &sIn, StrList & ) |
107 | { | 107 | { |
108 | Bu::String sOut( sIn ); | 108 | return sIn.toUpper(); |
109 | sOut.toUpper(); | ||
110 | return sOut; | ||
111 | } | 109 | } |
112 | }; | 110 | }; |
113 | 111 | ||
@@ -119,9 +117,7 @@ namespace Bu | |||
119 | virtual Bu::String call( | 117 | virtual Bu::String call( |
120 | const Bu::String &sIn, StrList & ) | 118 | const Bu::String &sIn, StrList & ) |
121 | { | 119 | { |
122 | Bu::String sOut( sIn ); | 120 | return sIn.toLower(); |
123 | sOut.toLower(); | ||
124 | return sOut; | ||
125 | } | 121 | } |
126 | }; | 122 | }; |
127 | 123 | ||