summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 18:50:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:32:13 +0100
commit8988d1a744c983ecd1435cb7b75d17a6f5acf9f9 (patch)
tree8a3a67d39d600d19ad0ce6a2c5cef4343984dbbc /xmlscript
parent82ef1b8111883a04d56983892eb416f0df975237 (diff)
Avoid reserved identifier
Change-Id: I69e8a6b2d449aff92e7bd8d0d4c39b0d1c71c97c
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xmlmod_imexp/imp_share.hxx2
-rw-r--r--xmlscript/source/xmlmod_imexp/xmlmod_import.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/source/xmlmod_imexp/imp_share.hxx b/xmlscript/source/xmlmod_imexp/imp_share.hxx
index 48495f066cce..05ca0944ce04 100644
--- a/xmlscript/source/xmlmod_imexp/imp_share.hxx
+++ b/xmlscript/source/xmlmod_imexp/imp_share.hxx
@@ -90,7 +90,7 @@ protected:
OUString _aLocalName;
css::uno::Reference< css::xml::input::XAttributes > _xAttributes;
- OUStringBuffer _StrBuffer;
+ OUStringBuffer _strBuffer;
public:
ModuleElement(
diff --git a/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx b/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
index 965f1bbc5a0d..f724ff7593ba 100644
--- a/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
+++ b/xmlscript/source/xmlmod_imexp/xmlmod_import.cxx
@@ -61,7 +61,7 @@ void ModuleElement::ignorableWhitespace(
void ModuleElement::characters( OUString const & rChars )
throw (xml::sax::SAXException, RuntimeException, std::exception)
{
- _StrBuffer.append( rChars );
+ _strBuffer.append( rChars );
}
void ModuleElement::processingInstruction(
@@ -73,7 +73,7 @@ void ModuleElement::processingInstruction(
void ModuleElement::endElement()
throw (xml::sax::SAXException, RuntimeException, std::exception)
{
- _pImport->mrModuleDesc.aCode = _StrBuffer.makeStringAndClear();
+ _pImport->mrModuleDesc.aCode = _strBuffer.makeStringAndClear();
}
Reference< xml::input::XElement > ModuleElement::startChildElement(