summaryrefslogtreecommitdiff
path: root/sc/qa/extras
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-01-16 08:55:47 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-01-18 18:12:10 +0100
commitd4273a37a59601f7dbc7f72282cba11c2cc883b3 (patch)
tree2d565dacf76649223da3978bfee7524c437c2bf6 /sc/qa/extras
parent453339cc22da7b350804bd1911faa99b89815c5b (diff)
these two variables don't need to be static
Diffstat (limited to 'sc/qa/extras')
-rw-r--r--sc/qa/extras/xdatapilottable.cxx6
1 files 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()
{