diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-11-06 13:40:01 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-11-06 13:40:01 +0000 |
commit | 8585088febae055dfde15e56700ee4010ad7c1c9 (patch) | |
tree | 217aad2e20dd4d697e64e08d212cc6157e24ca62 /idlc | |
parent | 946bc58fdfcbf9f2a411ac4019f5022cf2139e61 (diff) |
INTEGRATION: CWS jsc14 (1.6.40); FILE MERGED
2006/10/23 14:44:43 jsc 1.6.40.1: #69727# add helper method setPublished
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/inc/idlc/astdeclaration.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/idlc/inc/idlc/astdeclaration.hxx b/idlc/inc/idlc/astdeclaration.hxx index 57cbfb2ac63a..f6a104372a19 100644 --- a/idlc/inc/idlc/astdeclaration.hxx +++ b/idlc/inc/idlc/astdeclaration.hxx @@ -4,9 +4,9 @@ * * $RCSfile: astdeclaration.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-07 17:56:00 $ + * last change: $Author: kz $ $Date: 2006-11-06 14:40:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -132,9 +132,11 @@ public: sal_Bool hasAncestor(AstDeclaration* pDecl); + void setPublished() { m_bPublished = true; } bool isPublished() const { return m_bPublished; } virtual sal_Bool dump(RegistryKey& rKey); + protected: ::rtl::OString m_localName; ::rtl::OString m_scopedName; // full qualified name |