diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-03-18 23:02:54 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-03-18 23:02:54 +0000 |
commit | cba6293cf22e2c2ae17dd3954ad7d097f379c7ac (patch) | |
tree | dcdbda1f54d3d39a0066f2f42c7e1714e1ceb834 /src/utfstring.h | |
parent | fcf2dde54316a3ac35936157babccae8c8d8d90b (diff) | |
download | libbu++-cba6293cf22e2c2ae17dd3954ad7d097f379c7ac.tar.gz libbu++-cba6293cf22e2c2ae17dd3954ad7d097f379c7ac.tar.bz2 libbu++-cba6293cf22e2c2ae17dd3954ad7d097f379c7ac.tar.xz libbu++-cba6293cf22e2c2ae17dd3954ad7d097f379c7ac.zip |
Wow, a lot has changed. String is not a template class, and it can do it's own
formatting ala QString.
Diffstat (limited to 'src/utfstring.h')
-rw-r--r-- | src/utfstring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utfstring.h b/src/utfstring.h index 2140af1..56e544e 100644 --- a/src/utfstring.h +++ b/src/utfstring.h | |||
@@ -8,7 +8,7 @@ | |||
8 | #ifndef BU_UTF_STRING_H | 8 | #ifndef BU_UTF_STRING_H |
9 | #define BU_UTF_STRING_H | 9 | #define BU_UTF_STRING_H |
10 | 10 | ||
11 | #include "bu/string.h" | 11 | #include <stdint.h> |
12 | 12 | ||
13 | namespace Bu | 13 | namespace Bu |
14 | { | 14 | { |
@@ -21,8 +21,8 @@ namespace Bu | |||
21 | typedef uint32_t point; | 21 | typedef uint32_t point; |
22 | 22 | ||
23 | private: | 23 | private: |
24 | typedef BasicString<uint16_t> RawString; | 24 | // typedef BasicString<uint16_t> RawString; |
25 | RawString rsStore; | 25 | // RawString rsStore; |
26 | }; | 26 | }; |
27 | }; | 27 | }; |
28 | 28 | ||