diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-02-21 21:49:44 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-02-21 21:50:01 +0100 |
commit | f68cd77923ed996c372e6814d615c6faf635626a (patch) | |
tree | 3a84c352c14b3c6902be140bdc8d2e3cb5c56fdc /idlc | |
parent | e052f55236e2cdd4ebe6a126b570415b5a1b4ea5 (diff) |
Fix type unkown -> unknown
Change-Id: I8d55d5ae5ae38ae2b252859b5400e36301f19ef0
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/astexpression.cxx | 2 | ||||
-rw-r--r-- | idlc/source/errorhandler.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/astexpression.cxx b/idlc/source/astexpression.cxx index b28cfed3619c..61f2d7fa22bd 100644 --- a/idlc/source/astexpression.cxx +++ b/idlc/source/astexpression.cxx @@ -1277,7 +1277,7 @@ const sal_Char* SAL_CALL exprTypeToString(ExprType t) return "none"; } - return ("unkown"); + return ("unknown"); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/idlc/source/errorhandler.cxx b/idlc/source/errorhandler.cxx index 447e8c3675e8..464ff37caa63 100644 --- a/idlc/source/errorhandler.cxx +++ b/idlc/source/errorhandler.cxx @@ -168,7 +168,7 @@ static const sal_Char* warningCodeToMessage(WarningCode wCode) case WIDL_WRONG_NAMING_CONV: return "type or identifier doesn't fulfill the UNO naming convention: "; } - return "unkown warning"; + return "unknown warning"; } static const sal_Char* parseStateToMessage(ParseState state) |