summaryrefslogtreecommitdiffstats
path: root/editeng/source/xml/xmltxtexp.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-29 08:07:14 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-03-29 07:11:31 +0000
commit9b1307f790c550d91b062cbdf1e3fe41d7e7ea4a (patch)
tree27c83c2ce3bf42b6f97c8dba74115e8ae3ded4ed /editeng/source/xml/xmltxtexp.cxx
parentgbuild-to-ide: fix missing include in clang json database (diff)
downloadcore-9b1307f790c550d91b062cbdf1e3fe41d7e7ea4a.tar.gz
core-9b1307f790c550d91b062cbdf1e3fe41d7e7ea4a.zip
Avoid reserved identifiers
Change-Id: I759939aa74570be63f5d41814c22aad1851d65c4 Reviewed-on: https://gerrit.libreoffice.org/23587 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'editeng/source/xml/xmltxtexp.cxx')
-rw-r--r--editeng/source/xml/xmltxtexp.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/editeng/source/xml/xmltxtexp.cxx b/editeng/source/xml/xmltxtexp.cxx
index 08312ac708b6..e7fb6702f5c8 100644
--- a/editeng/source/xml/xmltxtexp.cxx
+++ b/editeng/source/xml/xmltxtexp.cxx
@@ -324,9 +324,9 @@ public:
virtual ~SvxXMLTextExportComponent();
// methods without content:
- virtual void _ExportAutoStyles() override;
- virtual void _ExportMasterStyles() override;
- virtual void _ExportContent() override;
+ virtual void ExportAutoStyles_() override;
+ virtual void ExportMasterStyles_() override;
+ virtual void ExportContent_() override;
private:
css::uno::Reference< css::text::XText > mxText;
@@ -413,7 +413,7 @@ void SvxWriteXML( EditEngine& rEditEngine, SvStream& rStream, const ESelection&
}
// methods without content:
-void SvxXMLTextExportComponent::_ExportAutoStyles()
+void SvxXMLTextExportComponent::ExportAutoStyles_()
{
rtl::Reference< XMLTextParagraphExport > xTextExport( GetTextParagraphExport() );
@@ -421,13 +421,13 @@ void SvxXMLTextExportComponent::_ExportAutoStyles()
xTextExport->exportTextAutoStyles();
}
-void SvxXMLTextExportComponent::_ExportContent()
+void SvxXMLTextExportComponent::ExportContent_()
{
rtl::Reference< XMLTextParagraphExport > xTextExport( GetTextParagraphExport() );
xTextExport->exportText( mxText );
}
-void SvxXMLTextExportComponent::_ExportMasterStyles() {}
+void SvxXMLTextExportComponent::ExportMasterStyles_() {}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */