summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-31 08:39:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-31 08:41:38 +0100
commit2525c93e08f9b6256c298171a792add6b7fa0c29 (patch)
treef626736563c4d516e61e17a1bd67616f866fa71b /test
parentbfd9753b92c225d7cc2b2d3172b26eb53a8e9228 (diff)
Move definition of static data member to .cxx
Diffstat (limited to 'test')
-rw-r--r--test/inc/test/sheet/xdatapilotdescriptor.hxx2
-rw-r--r--test/source/sheet/xdatapilotdescriptor.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/inc/test/sheet/xdatapilotdescriptor.hxx b/test/inc/test/sheet/xdatapilotdescriptor.hxx
index 9eca14ca4c51..eb5b8c10770d 100644
--- a/test/inc/test/sheet/xdatapilotdescriptor.hxx
+++ b/test/inc/test/sheet/xdatapilotdescriptor.hxx
@@ -60,8 +60,6 @@ private:
static std::vector<rtl::OUString> maFieldNames;
};
-std::vector< rtl::OUString > XDataPilotDescriptor::maFieldNames;
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/test/source/sheet/xdatapilotdescriptor.cxx b/test/source/sheet/xdatapilotdescriptor.cxx
index aa39416d0be6..eaddff59a44d 100644
--- a/test/source/sheet/xdatapilotdescriptor.cxx
+++ b/test/source/sheet/xdatapilotdescriptor.cxx
@@ -41,6 +41,8 @@ using namespace com::sun::star::uno;
namespace apitest {
+std::vector< rtl::OUString > XDataPilotDescriptor::maFieldNames;
+
void XDataPilotDescriptor::testTag()
{
rtl::OUString aTag(RTL_CONSTASCII_USTRINGPARAM("DataPilotDescriptor_Tag"));