summaryrefslogtreecommitdiff
path: root/ucb/source/cacher
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-07-02 09:33:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-07-02 13:45:13 +0200
commitbbb35541d8e0a2b041ed05ccb23307afa5371211 (patch)
tree56eb828b4be040879542614cba71ebef26faab80 /ucb/source/cacher
parentfdab50022519d8d794a00a3693e66bd8f3fad303 (diff)
Upcoming improved loplugin:staticanonymous -> redundantstatic: ucb
Change-Id: Id9301e65bea34c0edd9aadab85b848117e05075e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97710 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb/source/cacher')
-rw-r--r--ucb/source/cacher/cachedcontentresultset.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.cxx b/ucb/source/cacher/cachedcontentresultset.cxx
index c947b128c3e1..cd22e829b7e1 100644
--- a/ucb/source/cacher/cachedcontentresultset.cxx
+++ b/ucb/source/cacher/cachedcontentresultset.cxx
@@ -410,10 +410,10 @@ public:
};
//some helping variables ( names for my special properties )
-static const char g_sPropertyNameForCount[] = "RowCount";
-static const char g_sPropertyNameForFinalCount[] = "IsRowCountFinal";
-static const char g_sPropertyNameForFetchSize[] = "FetchSize";
-static const char g_sPropertyNameForFetchDirection[] = "FetchDirection";
+const char g_sPropertyNameForCount[] = "RowCount";
+const char g_sPropertyNameForFinalCount[] = "IsRowCountFinal";
+const char g_sPropertyNameForFetchSize[] = "FetchSize";
+const char g_sPropertyNameForFetchDirection[] = "FetchDirection";
CCRS_PropertySetInfo::CCRS_PropertySetInfo(
Reference< XPropertySetInfo > const & xInfo )