diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-16 08:55:47 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-18 18:12:10 +0100 |
commit | d4273a37a59601f7dbc7f72282cba11c2cc883b3 (patch) | |
tree | 2d565dacf76649223da3978bfee7524c437c2bf6 /sc | |
parent | 453339cc22da7b350804bd1911faa99b89815c5b (diff) |
these two variables don't need to be static
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/extras/xdatapilottable.cxx | 6 |
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() { |