diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-02-26 14:16:21 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-02-26 14:16:21 +0000 |
commit | 65795cf11735c3711598fb987d3ef6b97fb00d21 (patch) | |
tree | 44a1afa1a9dd4d0fe358d6f0fb646935b79b604b | |
parent | 093faca06ba4385be2f622a3ba70d761d7d29a07 (diff) |
INTEGRATION: CWS custommeta (1.8.80); FILE MERGED
2008/02/04 15:25:37 mst 1.8.80.1: - comphelper/inc/comphelper/propstate.hxx,
comphelper/source/property/propstate.cxx:
+ new OPropertyStateHelper constructor, taking an IEventNotificationHook
-rw-r--r-- | comphelper/source/property/propstate.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/comphelper/source/property/propstate.cxx b/comphelper/source/property/propstate.cxx index c808716d5efc..c6dcf867f22a 100644 --- a/comphelper/source/property/propstate.cxx +++ b/comphelper/source/property/propstate.cxx @@ -4,9 +4,9 @@ * * $RCSfile: propstate.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: kz $ $Date: 2007-05-10 10:54:57 $ + * last change: $Author: obo $ $Date: 2008-02-26 15:16:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -100,6 +100,11 @@ namespace comphelper return aTypes; } + OPropertyStateHelper::OPropertyStateHelper( + ::cppu::OBroadcastHelper& rBHlp, + ::cppu::IEventNotificationHook *i_pFireEvents) + : ::cppu::OPropertySetHelper(rBHlp, i_pFireEvents) { } + OPropertyStateHelper::~OPropertyStateHelper() {} //--------------------------------------------------------------------- |