summaryrefslogtreecommitdiff
path: root/comphelper/source
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2011-09-02 14:57:30 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2011-09-07 11:17:55 +0200
commit5c64fd7ce04ff82edb2989d862bd660c9b9492a5 (patch)
tree3b457843f3f2068b91bfa2e8a35e8c1de23a93ba /comphelper/source
parent20a3baeb5da5bbb77eb2bf46d6714ad38dc4f19b (diff)
Restore ABI compatibility with LO 3.4 and earlier
Factor out ABI-breaking changes to OPropertySetHelper into a derived class OPropertySetHelper2. Only gcc3.map is up-to-date.
Diffstat (limited to 'comphelper/source')
-rw-r--r--comphelper/source/property/propstate.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/propstate.cxx b/comphelper/source/property/propstate.cxx
index ec621cb43833..3859f6a0a95d 100644
--- a/comphelper/source/property/propstate.cxx
+++ b/comphelper/source/property/propstate.cxx
@@ -57,7 +57,7 @@ namespace comphelper
//---------------------------------------------------------------------
::com::sun::star::uno::Any SAL_CALL OPropertyStateHelper::queryInterface(const ::com::sun::star::uno::Type& _rType) throw( ::com::sun::star::uno::RuntimeException)
{
- ::com::sun::star::uno::Any aReturn = OPropertySetHelper::queryInterface(_rType);
+ ::com::sun::star::uno::Any aReturn = OPropertySetHelper2::queryInterface(_rType);
// our own ifaces
if ( !aReturn.hasValue() )
aReturn = ::cppu::queryInterface(_rType, static_cast< ::com::sun::star::beans::XPropertyState*>(this));
@@ -82,7 +82,7 @@ namespace comphelper
OPropertyStateHelper::OPropertyStateHelper(
::cppu::OBroadcastHelper& rBHlp,
::cppu::IEventNotificationHook *i_pFireEvents)
- : ::cppu::OPropertySetHelper(rBHlp, i_pFireEvents) { }
+ : ::cppu::OPropertySetHelper2(rBHlp, i_pFireEvents) { }
OPropertyStateHelper::~OPropertyStateHelper() {}