Kaydet (Commit) 5da802b4 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Drop __store_ prefix from static entity (avoid reserved identifier)

Change-Id: Ib03727f6b47d8f013f78a590d36d568ebc405bf3
üst 7605a786
......@@ -41,9 +41,9 @@ using namespace store;
*
*======================================================================*/
/*
* __store_convertTextToUnicode.
* convertTextToUnicode.
*/
inline sal_Size __store_convertTextToUnicode (
static inline sal_Size convertTextToUnicode (
rtl_TextToUnicodeConverter hConverter,
const sal_Char *pSrcBuffer, sal_Size nSrcLength,
sal_Unicode *pDstBuffer, sal_Size nDstLength)
......@@ -182,7 +182,7 @@ storeError OStoreDirectory_Impl::iterate (storeFindData &rFindData)
sal_Size n = rtl_str_getLength (p);
sal_Size k = rFindData.m_nLength;
n = __store_convertTextToUnicode (
n = convertTextToUnicode (
m_hTextCvt, p, n,
rFindData.m_pszName, STORE_MAXIMUM_NAMESIZE - 1);
if (k > n)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment