summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 17:45:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:32:07 +0100
commit5da802b44ddecf6855a34ebe9353a587e3e6a848 (patch)
treebd25cf34286af8c3010370bc5a13fcfecbda1e72 /store
parent7605a786540720c98cc87c44c4e79bf66b991af9 (diff)
Drop __store_ prefix from static entity (avoid reserved identifier)
Change-Id: Ib03727f6b47d8f013f78a590d36d568ebc405bf3
Diffstat (limited to 'store')
-rw-r--r--store/source/stordir.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/store/source/stordir.cxx b/store/source/stordir.cxx
index b56b45071b3a..aa34f91d1a00 100644
--- a/store/source/stordir.cxx
+++ b/store/source/stordir.cxx
@@ -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)