summaryrefslogtreecommitdiff
path: root/idlc/source/astinterface.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/astinterface.cxx')
-rw-r--r--idlc/source/astinterface.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/idlc/source/astinterface.cxx b/idlc/source/astinterface.cxx
index 5400036185c4..03c463441106 100644
--- a/idlc/source/astinterface.cxx
+++ b/idlc/source/astinterface.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -38,7 +38,7 @@
using namespace ::rtl;
-AstInterface::AstInterface(const ::rtl::OString& name,
+AstInterface::AstInterface(const ::rtl::OString& name,
AstInterface const * pInherits,
AstScope* pScope)
: AstType(NT_interface, name, pScope)
@@ -118,7 +118,7 @@ sal_Bool AstInterface::dump(RegistryKey& rKey)
RegistryKey localKey;
if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8 ), localKey))
{
- fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n",
+ fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n",
idlc()->getOptions()->getProgramName().getStr(),
getFullName().getStr(), OUStringToOString(rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr());
return sal_False;
@@ -261,14 +261,14 @@ sal_Bool AstInterface::dump(RegistryKey& rKey)
if (localKey.setValue(emptyStr, RG_VALUETYPE_BINARY, (RegValue)pBlob, aBlobSize))
{
- fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n",
+ fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n",
idlc()->getOptions()->getProgramName().getStr(),
getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr());
return sal_False;
}
return true;
-}
+}
void AstInterface::checkInheritedInterfaceClashes(
DoubleDeclarations & doubleDeclarations,