summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-28 08:52:48 +0200
committerNoel Grandin <noel@peralex.com>2014-03-03 08:58:58 +0200
commit97a7015daa10d56c24a1a2cca9955a09931e2d96 (patch)
tree6ca0b953f7af63c1537294fdb34b285e65be1e2f /sc
parent2f4db1cf6eaf28fc5907dca4870368ea4b67fbc0 (diff)
remove unused code AddressWalker::pop()
Change-Id: Ia4ecb3f846cf6adfedb05a452fd8705c735022ad
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx6
-rw-r--r--sc/source/ui/inc/TableFillingAndNavigationTools.hxx1
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx b/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx
index c4ff9151ef4d..3eb6e13e828f 100644
--- a/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx
+++ b/sc/source/ui/StatisticsDialogs/TableFillingAndNavigationTools.cxx
@@ -146,12 +146,6 @@ void AddressWalker::push(SCCOL aRelativeCol, SCROW aRelativeRow, SCTAB aRelative
mAddressStack.push_back(mCurrentAddress);
}
-void AddressWalker::pop()
-{
- mCurrentAddress = mAddressStack.back();
- mAddressStack.pop_back();
-}
-
AddressWalkerWriter::AddressWalkerWriter(ScAddress aInitialAddress, ScDocShell* pDocShell, ScDocument* pDocument,
formula::FormulaGrammar::Grammar eGrammar ) :
AddressWalker(aInitialAddress, true),
diff --git a/sc/source/ui/inc/TableFillingAndNavigationTools.hxx b/sc/source/ui/inc/TableFillingAndNavigationTools.hxx
index 88f7c3f58a07..2f133c05f2bc 100644
--- a/sc/source/ui/inc/TableFillingAndNavigationTools.hxx
+++ b/sc/source/ui/inc/TableFillingAndNavigationTools.hxx
@@ -70,7 +70,6 @@ public:
void nextColumn();
void nextRow();
void push(SCCOL aRelativeCol = 0, SCROW aRelativeRow = 0, SCTAB aRelativeTab = 0);
- void pop();
};
class AddressWalkerWriter : public AddressWalker