diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-01 23:00:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-01 23:00:24 +0100 |
commit | 2bb1ba5c3f802db299a80ede39c5e3f6e498cd65 (patch) | |
tree | 9883d1038e98d5cdde062a394d7e03038b04538a /tools | |
parent | ef6add9a7e0bcba1fb039afb75d62e753fa37949 (diff) |
shrink api: long version can be private
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/string.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/inc/tools/string.hxx b/tools/inc/tools/string.hxx index 33611b195aff..040be7ef2de5 100644 --- a/tools/inc/tools/string.hxx +++ b/tools/inc/tools/string.hxx @@ -164,6 +164,9 @@ private: TOOLS_DLLPRIVATE void ImplStringConvert( rtl_TextEncoding, rtl_TextEncoding, sal_Bool); + TOOLS_DLLPRIVATE static sal_Unicode ConvertToUnicode( + const sal_Char* pChar, sal_Size* pLen, rtl_TextEncoding eTextEncoding); + ByteString( const int* pDummy ); // not implemented: to prevent ByteString( NULL ) ByteString(int); // not implemented; to detect misuses // of ByteString(sal_Char); @@ -263,8 +266,6 @@ public: static sal_Char ConvertFromUnicode( sal_Unicode c, rtl_TextEncoding eTextEncoding, sal_Bool bReplace = sal_True ); - static sal_Unicode ConvertToUnicode( const sal_Char* pChar, sal_Size* pLen, - rtl_TextEncoding eTextEncoding ); static sal_Size ConvertFromUnicode( sal_Unicode c, sal_Char* pBuf, sal_Size nBufLen, rtl_TextEncoding eTextEncoding, sal_Bool bReplace = sal_True ); |