summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc/inheritedinterface.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/idlc/inheritedinterface.hxx')
-rw-r--r--idlc/inc/idlc/inheritedinterface.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/inc/idlc/inheritedinterface.hxx b/idlc/inc/idlc/inheritedinterface.hxx
index 21cadf734671..41134e57caef 100644
--- a/idlc/inc/idlc/inheritedinterface.hxx
+++ b/idlc/inc/idlc/inheritedinterface.hxx
@@ -31,7 +31,7 @@ class InheritedInterface {
public:
InheritedInterface(
AstType const * theInterface, bool theOptional,
- rtl::OUString const & theDocumentation):
+ OUString const & theDocumentation):
interface(theInterface), optional(theOptional),
documentation(theDocumentation) {}
@@ -42,12 +42,12 @@ public:
bool isOptional() const { return optional; }
- rtl::OUString getDocumentation() const { return documentation; }
+ OUString getDocumentation() const { return documentation; }
private:
AstType const * interface;
bool optional;
- rtl::OUString documentation;
+ OUString documentation;
};
#endif