diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-16 05:21:39 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-16 05:21:39 +0000 |
| commit | a7207b7d8367af47ddb7e2733cb963148fd0379f (patch) | |
| tree | d26b5494cf1a91f2b94ba51c5370e4e5299b3cae /otk/ustring.hh | |
| parent | 0f7e3be6b60888912dc9c7089e23074ef64373e0 (diff) | |
make an optional bool param for ustring's other constructors
Diffstat (limited to 'otk/ustring.hh')
| -rw-r--r-- | otk/ustring.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/ustring.hh b/otk/ustring.hh index be2a59c8..8ee066d3 100644 --- a/otk/ustring.hh +++ b/otk/ustring.hh @@ -124,8 +124,8 @@ public: ustring(const ustring& other); ustring& operator=(const ustring& other); - ustring(const std::string& src); - ustring(const char* src); + ustring(const std::string& src, bool utf8 = true); + ustring(const char* src, bool utf8 = true); // append to the string |
