summaryrefslogtreecommitdiffstats
path: root/sc/inc/refhint.hxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-12-01 23:56:44 +0100
committerEike Rathke <erack@redhat.com>2014-12-02 14:56:49 +0100
commit6c2111f17089eb667bf526561d7667d17825e822 (patch)
tree5ba7712d0325c1f048d1ffbb1c0053e36d2567be /sc/inc/refhint.hxx
parentfdo#51741 Mark document as modified on bookmark rename / delete (diff)
downloadcore-6c2111f17089eb667bf526561d7667d17825e822.tar.gz
core-6c2111f17089eb667bf526561d7667d17825e822.zip
fdo#86762 re-establish listeners to move cell broadcasters
... for UpdateReferenceOnSort=false Change-Id: Id90288660e317d6e47ee01ee3b5ff9058cfa18df
Diffstat (limited to 'sc/inc/refhint.hxx')
-rw-r--r--sc/inc/refhint.hxx18
1 files changed, 17 insertions, 1 deletions
diff --git a/sc/inc/refhint.hxx b/sc/inc/refhint.hxx
index 70815223e886..8d00ae1fa2f2 100644
--- a/sc/inc/refhint.hxx
+++ b/sc/inc/refhint.hxx
@@ -24,7 +24,9 @@ public:
enum Type {
Moved,
ColumnReordered,
- RowReordered
+ RowReordered,
+ StartListening,
+ StopListening
};
private:
@@ -101,6 +103,20 @@ public:
SCCOL getEndColumn() const;
};
+class RefStartListeningHint : public RefHint
+{
+public:
+ RefStartListeningHint();
+ virtual ~RefStartListeningHint();
+};
+
+class RefStopListeningHint : public RefHint
+{
+public:
+ RefStopListeningHint();
+ virtual ~RefStopListeningHint();
+};
+
}
#endif