From d4273a37a59601f7dbc7f72282cba11c2cc883b3 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Mon, 16 Jan 2012 08:55:47 +0100 Subject: these two variables don't need to be static --- sc/qa/extras/xdatapilottable.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sc/qa/extras/xdatapilottable.cxx b/sc/qa/extras/xdatapilottable.cxx index c9d3ab941c37..c19c484d8e96 100644 --- a/sc/qa/extras/xdatapilottable.cxx +++ b/sc/qa/extras/xdatapilottable.cxx @@ -64,14 +64,12 @@ private: static int nTest; static uno::Reference< lang::XComponent > xComponent; - static uno::Reference< table::XCell > xCellForChange; - static uno::Reference< table::XCell > xCellForCheck; + uno::Reference< table::XCell > xCellForChange; + uno::Reference< table::XCell > xCellForCheck; }; int ScXDataPilotTable::nTest = 0; uno::Reference< lang::XComponent > ScXDataPilotTable::xComponent; -uno::Reference< table::XCell > ScXDataPilotTable::xCellForChange; -uno::Reference< table::XCell > ScXDataPilotTable::xCellForCheck; void ScXDataPilotTable::testGetOutputRange() { -- cgit