summaryrefslogtreecommitdiff
path: root/sc/inc/refupdatecontext.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 01:36:28 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 23:50:02 -0400
commit5a1960f5ea9f225fda493df746e5674e3bd1cce9 (patch)
tree7f77a380e2e16500e39fdde51d379d9606507d1c /sc/inc/refupdatecontext.hxx
parented671a33a31b8d8cd81e3774be603c13e8b9a6f3 (diff)
Update range names on sheet deletion.
It works fine with live calc instance, but somehow fails in unit test. Change-Id: Ie60774b4f1f8391801e0d9358f6cca78d8e52397
Diffstat (limited to 'sc/inc/refupdatecontext.hxx')
-rw-r--r--sc/inc/refupdatecontext.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/sc/inc/refupdatecontext.hxx b/sc/inc/refupdatecontext.hxx
index 036ee9a7789d..88ef9d2b411f 100644
--- a/sc/inc/refupdatecontext.hxx
+++ b/sc/inc/refupdatecontext.hxx
@@ -92,6 +92,15 @@ struct RefUpdateInsertTabContext
RefUpdateInsertTabContext(SCTAB nInsertPos, SCTAB nSheets);
};
+struct RefUpdateDeleteTabContext
+{
+ SCTAB mnDeletePos;
+ SCTAB mnSheets;
+ UpdatedRangeNames maUpdatedNames;
+
+ RefUpdateDeleteTabContext(SCTAB nInsertPos, SCTAB nSheets);
+};
+
}
#endif