summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/xml')
-rw-r--r--sw/source/filter/xml/xmltble.cxx8
-rw-r--r--sw/source/filter/xml/xmltbli.cxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx
index a7bce2873a7f..0f0f012b9dbc 100644
--- a/sw/source/filter/xml/xmltble.cxx
+++ b/sw/source/filter/xml/xmltble.cxx
@@ -45,7 +45,7 @@
#include "swddetbl.hxx"
#include <ndole.hxx>
#include <xmloff/nmspmap.hxx>
-#include <sfx2/linkmgr.hxx> // for cTokenSeperator
+#include <sfx2/linkmgr.hxx> // for cTokenSeparator
#include "unotbl.hxx"
#include "xmltexte.hxx"
#include "xmlexp.hxx"
@@ -1136,11 +1136,11 @@ void SwXMLExport::ExportTable( const SwTableNode& rTblNd )
// DDE command
const String sCmd = pDDEFldType->GetCmd();
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_APPLICATION,
- sCmd.GetToken(0, sfx2::cTokenSeperator) );
+ sCmd.GetToken(0, sfx2::cTokenSeparator) );
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_ITEM,
- sCmd.GetToken(1, sfx2::cTokenSeperator) );
+ sCmd.GetToken(1, sfx2::cTokenSeparator) );
AddAttribute( XML_NAMESPACE_OFFICE, XML_DDE_TOPIC,
- sCmd.GetToken(2, sfx2::cTokenSeperator) );
+ sCmd.GetToken(2, sfx2::cTokenSeparator) );
// auto update
if (pDDEFldType->GetType() == sfx2::LINKUPDATE_ALWAYS)
diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index d30cccf8e3e6..5a367cd49bd5 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -1204,9 +1204,9 @@ static SwDDEFieldType* lcl_GetDDEFieldType(SwXMLDDETableContext_Impl* pContext,
{
// make command string
String sCommand(pContext->GetDDEApplication());
- sCommand += sfx2::cTokenSeperator;
+ sCommand += sfx2::cTokenSeparator;
sCommand += String(pContext->GetDDEItem());
- sCommand += sfx2::cTokenSeperator;
+ sCommand += sfx2::cTokenSeparator;
sCommand += String(pContext->GetDDETopic());
sal_uInt16 nType = static_cast< sal_uInt16 >(pContext->GetIsAutomaticUpdate() ? sfx2::LINKUPDATE_ALWAYS