summaryrefslogtreecommitdiff
path: root/svx/source/sdr
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sdr')
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx8
-rw-r--r--svx/source/sdr/overlay/overlayselection.cxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
index 037e8ace65d2..57b0bfaff55e 100644
--- a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
@@ -199,12 +199,12 @@ namespace sdr { namespace contact {
};
- bool operator==( const ControlHolder& _rControl, const Reference< XInterface >& _rxCompare )
+ static bool operator==( const ControlHolder& _rControl, const Reference< XInterface >& _rxCompare )
{
return _rControl.getControl() == _rxCompare;
}
- bool operator==( const ControlHolder& _rControl, const Any& _rxCompare )
+ static bool operator==( const ControlHolder& _rControl, const Any& _rxCompare )
{
return _rControl == Reference< XInterface >( _rxCompare, UNO_QUERY );
}
@@ -274,7 +274,7 @@ namespace sdr { namespace contact {
/** positions a control, and sets its zoom mode, using a given transformation and output device
*/
- void adjustControlGeometry_throw( const ControlHolder& _rControl, const tools::Rectangle& _rLogicBoundingRect,
+ static void adjustControlGeometry_throw( const ControlHolder& _rControl, const tools::Rectangle& _rLogicBoundingRect,
const basegfx::B2DHomMatrix& _rViewTransformation, const ::basegfx::B2DHomMatrix& _rZoomLevelNormalization )
{
OSL_PRECOND( _rControl.is(), "UnoControlContactHelper::adjustControlGeometry_throw: illegal control!" );
@@ -310,7 +310,7 @@ namespace sdr { namespace contact {
/** disposes the given control
*/
- void disposeAndClearControl_nothrow( ControlHolder& _rControl )
+ static void disposeAndClearControl_nothrow( ControlHolder& _rControl )
{
try
{
diff --git a/svx/source/sdr/overlay/overlayselection.cxx b/svx/source/sdr/overlay/overlayselection.cxx
index 13e8e4ad1e16..5d22203a4e4e 100644
--- a/svx/source/sdr/overlay/overlayselection.cxx
+++ b/svx/source/sdr/overlay/overlayselection.cxx
@@ -36,7 +36,7 @@ namespace sdr
namespace overlay
{
// combine rages geometrically to a single, ORed polygon
- basegfx::B2DPolyPolygon impCombineRangesToPolyPolygon(const std::vector< basegfx::B2DRange >& rRanges)
+ static basegfx::B2DPolyPolygon impCombineRangesToPolyPolygon(const std::vector< basegfx::B2DRange >& rRanges)
{
const sal_uInt32 nCount(rRanges.size());
basegfx::B2DPolyPolygon aRetval;
@@ -60,7 +60,7 @@ namespace sdr
// check if wanted type OverlayType::Transparent or OverlayType::Solid
// is possible. If not, fallback to invert mode (classic mode)
- OverlayType impCheckPossibleOverlayType(OverlayType aOverlayType)
+ static OverlayType impCheckPossibleOverlayType(OverlayType aOverlayType)
{
if(OverlayType::Invert != aOverlayType)
{