summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-25 11:24:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-25 11:24:51 +0000
commite9b3aaacc5dc8093efef045efdfd5745ed98ef0e (patch)
tree2162a1b28bbe24d7c4d74cf5da5a4ab3082b9fa3 /linguistic
parent2f0bc60439debad45b73dba40c011da9ae636818 (diff)
INTEGRATION: CWS tl32 (1.4.8); FILE MERGED
2006/11/01 15:14:52 tl 1.4.8.2: #140479# warning-free code for unxlngi6(.pro) 2006/10/26 11:26:03 tl 1.4.8.1: #140479# make linguistic warning-free
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/prophelp.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/linguistic/source/prophelp.cxx b/linguistic/source/prophelp.cxx
index 35f142fcf68a..d8007a7fc071 100644
--- a/linguistic/source/prophelp.cxx
+++ b/linguistic/source/prophelp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: prophelp.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 03:55:07 $
+ * last change: $Author: vg $ $Date: 2007-05-25 12:24:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -85,10 +85,11 @@ PropertyChgHelper::PropertyChgHelper(
const Reference< XInterface > &rxSource,
Reference< XPropertySet > &rxPropSet,
int nAllowedEvents ) :
- xMyEvtObj (rxSource),
- xPropSet (rxPropSet),
+ PropertyChgHelperBase(),
aPropNames (nCHCount),
+ xMyEvtObj (rxSource),
aLngSvcEvtListeners (GetLinguMutex()),
+ xPropSet (rxPropSet),
nEvtFlags (nAllowedEvents)
{
OUString *pName = aPropNames.getArray();
@@ -102,14 +103,14 @@ PropertyChgHelper::PropertyChgHelper(
PropertyChgHelper::PropertyChgHelper( const PropertyChgHelper &rHelper ) :
+ PropertyChgHelperBase(),
aLngSvcEvtListeners (GetLinguMutex())
{
RemoveAsPropListener();
- xPropSet = rHelper.xPropSet;
aPropNames = rHelper.aPropNames;
xMyEvtObj = rHelper.xMyEvtObj;
+ xPropSet = rHelper.xPropSet;
nEvtFlags = rHelper.nEvtFlags;
- //aLngSvcEvtListeners = rHelper.aLngSvcEvtListeners;
AddAsPropListener();
SetDefaultValues();
@@ -396,8 +397,7 @@ void SAL_CALL
throw(RuntimeException)
{
MutexGuard aGuard( GetLinguMutex() );
- BOOL bRes = PropertyChgHelper::propertyChange_Impl( rEvt );
- DBG_ASSERT( bRes, "unknown property" );
+ PropertyChgHelper::propertyChange_Impl( rEvt );
}