summaryrefslogtreecommitdiff
path: root/sc/inc/editsrc.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-01-18 14:54:02 +0000
committerNiklas Nebel <nn@openoffice.org>2001-01-18 14:54:02 +0000
commit05a07b1f6bf683bad8325091d20de1ca9c72b530 (patch)
tree690a10e271391a451e7868dde2a815e05ff0e70b /sc/inc/editsrc.hxx
parentfaf31006f2185187482a68cce26fe58d830cd995 (diff)
ScSimpleEditSource
Diffstat (limited to 'sc/inc/editsrc.hxx')
-rw-r--r--sc/inc/editsrc.hxx21
1 files changed, 19 insertions, 2 deletions
diff --git a/sc/inc/editsrc.hxx b/sc/inc/editsrc.hxx
index 18a95d56e586..5dd92d73745c 100644
--- a/sc/inc/editsrc.hxx
+++ b/sc/inc/editsrc.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editsrc.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:44:49 $
+ * last change: $Author: nn $ $Date: 2001-01-18 15:52:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -153,5 +153,22 @@ public:
};
+// EditSource with a shared forwarder for all children of one text object
+
+class ScSimpleEditSource : public SvxEditSource
+{
+private:
+ SvxTextForwarder* pForwarder;
+
+public:
+ ScSimpleEditSource( SvxTextForwarder* pForw );
+ virtual ~ScSimpleEditSource();
+
+ virtual SvxEditSource* Clone() const ;
+ virtual SvxTextForwarder* GetTextForwarder();
+ virtual void UpdateData();
+};
+
+
#endif