summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-01-12 13:35:03 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-01-12 13:35:03 +0000
commit159e84aa2bac2af3b137ff0ed8be21fc7353aee0 (patch)
tree73545d3d1c80ec85575dcaf5bebfd8e735c02fda
parent9cade0aaa8b4c3ee1d41c402669cd53e2c1cc5bc (diff)
- changed: prefix of redline IDs changed from 'RL' to 'ct'
(which is more in line with other prefix names in the format)
-rw-r--r--xmloff/source/text/XMLRedlineExport.cxx8
-rw-r--r--xmloff/source/text/XMLRedlineExport.hxx7
2 files changed, 8 insertions, 7 deletions
diff --git a/xmloff/source/text/XMLRedlineExport.cxx b/xmloff/source/text/XMLRedlineExport.cxx
index dd6017cabb94..31cd194b2686 100644
--- a/xmloff/source/text/XMLRedlineExport.cxx
+++ b/xmloff/source/text/XMLRedlineExport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLRedlineExport.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dvo $ $Date: 2001-01-10 20:51:01 $
+ * last change: $Author: dvo $ $Date: 2001-01-12 14:35:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -127,7 +127,6 @@ XMLRedlineExport::XMLRedlineExport(SvXMLExport& rExp) :
sInsertion(RTL_CONSTASCII_USTRINGPARAM(sXML_insertion)),
sIsCollapsed(RTL_CONSTASCII_USTRINGPARAM("IsCollapsed")),
sIsStart(RTL_CONSTASCII_USTRINGPARAM("IsStart")),
- sRL(RTL_CONSTASCII_USTRINGPARAM("RL")),
sRedlineAuthor(RTL_CONSTASCII_USTRINGPARAM("RedlineAuthor")),
sRedlineComment(RTL_CONSTASCII_USTRINGPARAM("RedlineComment")),
sRedlineDateTime(RTL_CONSTASCII_USTRINGPARAM("RedlineDateTime")),
@@ -136,6 +135,7 @@ XMLRedlineExport::XMLRedlineExport(SvXMLExport& rExp) :
sStyle(RTL_CONSTASCII_USTRINGPARAM("Style")),
sTextTable(RTL_CONSTASCII_USTRINGPARAM("TextTable")),
sUnknownChange(RTL_CONSTASCII_USTRINGPARAM("UnknownChange")),
+ sChangePrefix(RTL_CONSTASCII_USTRINGPARAM("ct")),
rExport(rExp),
aChangesList()
{
@@ -329,7 +329,7 @@ const OUString XMLRedlineExport::GetRedlineID(
OUString sTmp;
aAny >>= sTmp;
- OUStringBuffer sBuf(sRL);
+ OUStringBuffer sBuf(sChangePrefix);
sBuf.append(sTmp);
return sBuf.makeStringAndClear();
}
diff --git a/xmloff/source/text/XMLRedlineExport.hxx b/xmloff/source/text/XMLRedlineExport.hxx
index 686e4a61347c..d6e62d8cb2b1 100644
--- a/xmloff/source/text/XMLRedlineExport.hxx
+++ b/xmloff/source/text/XMLRedlineExport.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLRedlineExport.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dvo $ $Date: 2001-01-10 20:51:01 $
+ * last change: $Author: dvo $ $Date: 2001-01-12 14:35:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -102,7 +102,6 @@ class XMLRedlineExport
const ::rtl::OUString sInsertion;
const ::rtl::OUString sIsCollapsed;
const ::rtl::OUString sIsStart;
- const ::rtl::OUString sRL;
const ::rtl::OUString sRedlineAuthor;
const ::rtl::OUString sRedlineComment;
const ::rtl::OUString sRedlineDateTime;
@@ -112,6 +111,8 @@ class XMLRedlineExport
const ::rtl::OUString sTextTable;
const ::rtl::OUString sUnknownChange;
+ const ::rtl::OUString sChangePrefix;
+
SvXMLExport& rExport;
ChangesListType aChangesList; /// list of changes