diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:46:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:46:08 +0000 |
commit | 1ea7f1509b89d2aa9cfe3e59dd8ff1e36372d2d9 (patch) | |
tree | 6391166c8c7beb25c0a0c86d4b8c02f6d88782b5 /idlc/inc | |
parent | a74353c38298eccc4ed0dd4227f8cc146502364f (diff) |
INTEGRATION: CWS warnings01 (1.3.30); FILE MERGED
2005/11/07 12:12:26 sb 1.3.30.3: #i53898# Made code warning-free (additional -W switches for GCC).
2005/09/22 23:56:05 sb 1.3.30.2: RESYNC: (1.3-1.4); FILE MERGED
2005/08/29 14:14:21 sb 1.3.30.1: #i53898# Made code warning-free.
Diffstat (limited to 'idlc/inc')
-rw-r--r-- | idlc/inc/idlc/astattribute.hxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/idlc/inc/idlc/astattribute.hxx b/idlc/inc/idlc/astattribute.hxx index 6ee1d8e922ae..32007e532e70 100644 --- a/idlc/inc/idlc/astattribute.hxx +++ b/idlc/inc/idlc/astattribute.hxx @@ -4,9 +4,9 @@ * * $RCSfile: astattribute.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-07 17:54:40 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:46:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -50,8 +50,8 @@ public: AstAttribute( sal_uInt32 flags, AstType const * type, rtl::OString const & name, AstScope * scope): - AstDeclaration(NT_attribute, name, scope), m_flags(flags), - AstScope(NT_attribute), m_pType(type) + AstDeclaration(NT_attribute, name, scope), + AstScope(NT_attribute), m_flags(flags), m_pType(type) {} AstAttribute(NodeType nodeType, sal_uInt32 flags, AstType const * pType, const ::rtl::OString& name, AstScope* pScope) @@ -62,20 +62,20 @@ public: virtual ~AstAttribute() {} void setExceptions( - rtl::OUString const * getDocumentation, DeclList const * getExceptions, - rtl::OUString const * setDocumentation, DeclList const * setExceptions) + rtl::OUString const * getDoc, DeclList const * getExc, + rtl::OUString const * setDoc, DeclList const * setExc) { - if (getDocumentation != 0) { - m_getDocumentation = *getDocumentation; + if (getDoc != 0) { + m_getDocumentation = *getDoc; } - if (getExceptions != 0) { - m_getExceptions = *getExceptions; + if (getExc != 0) { + m_getExceptions = *getExc; } - if (setDocumentation != 0) { - m_setDocumentation = *setDocumentation; + if (setDoc != 0) { + m_setDocumentation = *setDoc; } - if (setExceptions != 0) { - m_setExceptions = *setExceptions; + if (setExc != 0) { + m_setExceptions = *setExc; } } |