summaryrefslogtreecommitdiffstats
path: root/toolkit/source/controls/unocontrolbase.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-03-27 16:05:12 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-03-27 16:05:12 +0000
commitfd2cf3dc7cd9c73070fa4d70c8ca99c9fc1ce135 (patch)
tree9569a564e06fba817528ea414129b4074d83cb61 /toolkit/source/controls/unocontrolbase.cxx
parentMWS_SRX644: migrate branch mws_srx644 -> HEAD (diff)
downloadcore-fd2cf3dc7cd9c73070fa4d70c8ca99c9fc1ce135.tar.gz
core-fd2cf3dc7cd9c73070fa4d70c8ca99c9fc1ce135.zip
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'toolkit/source/controls/unocontrolbase.cxx')
-rw-r--r--toolkit/source/controls/unocontrolbase.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/toolkit/source/controls/unocontrolbase.cxx b/toolkit/source/controls/unocontrolbase.cxx
index b0cc24f082c8..df05be1bb241 100644
--- a/toolkit/source/controls/unocontrolbase.cxx
+++ b/toolkit/source/controls/unocontrolbase.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unocontrolbase.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mt $ $Date: 2001-10-11 14:58:22 $
+ * last change: $Author: hr $ $Date: 2003-03-27 17:03:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -196,7 +196,7 @@ double UnoControlBase::ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp )
if ( xL.is() )
aSz = xL->getMinimumSize();
- if ( !mxPeer.is() || ( mxPeer != xP ) )
+ if ( !getPeer().is() || ( getPeer() != xP ) )
xP->dispose();
}
return aSz;
@@ -213,7 +213,7 @@ double UnoControlBase::ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp )
if ( xL.is() )
aSz = xL->getPreferredSize();
- if ( !mxPeer.is() || ( mxPeer != xP ) )
+ if ( !getPeer().is() || ( getPeer() != xP ) )
xP->dispose();
}
return aSz;
@@ -230,7 +230,7 @@ double UnoControlBase::ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp )
if ( xL.is() )
aSz = xL->calcAdjustedSize( rNewSize );
- if ( !mxPeer.is() || ( mxPeer != xP ) )
+ if ( !getPeer().is() || ( getPeer() != xP ) )
xP->dispose();
}
return aSz;
@@ -247,7 +247,7 @@ double UnoControlBase::ImplGetPropertyValue_DOUBLE( sal_uInt16 nProp )
if ( xL.is() )
aSz = xL->getMinimumSize( nCols, nLines );
- if ( !mxPeer.is() || ( mxPeer != xP ) )
+ if ( !getPeer().is() || ( getPeer() != xP ) )
xP->dispose();
}
return aSz;
@@ -263,7 +263,7 @@ void UnoControlBase::Impl_getColumnsAndLines( sal_Int16& nCols, sal_Int16& nLine
if ( xL.is() )
xL->getColumnsAndLines( nCols, nLines );
- if ( !mxPeer.is() || ( mxPeer != xP ) )
+ if ( !getPeer().is() || ( getPeer() != xP ) )
xP->dispose();
}
}