summaryrefslogtreecommitdiff
path: root/svtools/source/misc/xwindowitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/misc/xwindowitem.cxx')
-rw-r--r--svtools/source/misc/xwindowitem.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/svtools/source/misc/xwindowitem.cxx b/svtools/source/misc/xwindowitem.cxx
index d801d06317b8..791b7e72501b 100644
--- a/svtools/source/misc/xwindowitem.cxx
+++ b/svtools/source/misc/xwindowitem.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -40,8 +40,8 @@ using namespace ::com::sun::star;
TYPEINIT1_FACTORY( XWindowItem, SfxPoolItem, new XWindowItem );
-
-XWindowItem::XWindowItem() :
+
+XWindowItem::XWindowItem() :
SfxPoolItem()
{
}
@@ -58,16 +58,16 @@ XWindowItem::XWindowItem( USHORT nWhichId, Window * pWin ) :
}
}
-
+
XWindowItem::XWindowItem( USHORT nWhichId, uno::Reference< awt::XWindow > & rxWin ) :
- SfxPoolItem( nWhichId ),
+ SfxPoolItem( nWhichId ),
m_xWin( rxWin )
{
-}
+}
XWindowItem::XWindowItem( const XWindowItem &rItem ) :
- SfxPoolItem( Which() ),
+ SfxPoolItem( Which() ),
m_xWin( rItem.m_xWin )
{
}
@@ -77,12 +77,12 @@ XWindowItem::~XWindowItem()
{
}
-
+
SfxPoolItem * XWindowItem::Clone( SfxItemPool* /*pPool*/ ) const
{
return new XWindowItem( *this );
}
-
+
int XWindowItem::operator == ( const SfxPoolItem & rAttr ) const
{