summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc/astmember.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/idlc/astmember.hxx')
-rw-r--r--idlc/inc/idlc/astmember.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/inc/idlc/astmember.hxx b/idlc/inc/idlc/astmember.hxx
index fd98b299aa02..3fec89005fc8 100644
--- a/idlc/inc/idlc/astmember.hxx
+++ b/idlc/inc/idlc/astmember.hxx
@@ -29,7 +29,7 @@ class AstType;
class AstMember: public AstDeclaration {
public:
AstMember(
- AstType const * pType, rtl::OString const & name, AstScope * pScope):
+ AstType const * pType, OString const & name, AstScope * pScope):
AstDeclaration(NT_member, name, pScope), m_pType(pType) {}
virtual ~AstMember() {}
@@ -38,7 +38,7 @@ public:
protected:
AstMember(
- NodeType type, AstType const * pType, rtl::OString const & name,
+ NodeType type, AstType const * pType, OString const & name,
AstScope * pScope):
AstDeclaration(type, name, pScope), m_pType(pType) {}