summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorBrij Mohan Lal Srivastava <contactbrijmohan@gmail.com>2014-11-12 14:24:10 +0530
committerStephan Bergmann <sbergman@redhat.com>2014-11-14 09:20:38 +0100
commitd32be3ace8c8fd430bbecdf69f88a116b0ee91d1 (patch)
treeb373c084cb124434e0498867b24bc7bb333155dd /idlc
parentf5e86ebc097f0f8bc5b282511149cb026710ecde (diff)
fdo#86023 - O[U]String needs a 'clear' method
Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/astdeclaration.cxx2
-rw-r--r--idlc/source/idlc.cxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/idlc/source/astdeclaration.cxx b/idlc/source/astdeclaration.cxx
index 97d21f1d3cef..f5adfeaa8e0b 100644
--- a/idlc/source/astdeclaration.cxx
+++ b/idlc/source/astdeclaration.cxx
@@ -91,7 +91,7 @@ void AstDeclaration::setPredefined(bool bPredefined)
m_bPredefined = bPredefined;
if ( m_bPredefined )
{
- m_fileName = OString();
+ m_fileName.clear();
m_bInMainFile = false;
}
}
diff --git a/idlc/source/idlc.cxx b/idlc/source/idlc.cxx
index 75a71dfa6a6b..f6a449506cc6 100644
--- a/idlc/source/idlc.cxx
+++ b/idlc/source/idlc.cxx
@@ -248,10 +248,10 @@ void Idlc::reset()
m_lineNumber = 0;
m_parseState = PS_NoState;
- m_fileName = OString();
- m_mainFileName = OString();
- m_realFileName = OString();
- m_documentation = OString();
+ m_fileName.clear();
+ m_mainFileName.clear();
+ m_realFileName.clear();
+ m_documentation.clear();
m_pScopes->clear();
if ( m_pRoot)