diff options
author | Oliver-Rainer Wittmann <od@openoffice.org> | 2010-02-02 16:39:44 +0100 |
---|---|---|
committer | Oliver-Rainer Wittmann <od@openoffice.org> | 2010-02-02 16:39:44 +0100 |
commit | 03847281f1a8a9e8cfe56143a4cef9df6b1adf2a (patch) | |
tree | 2a9b95c55a3c51e043c274a96a723829cd47a135 /sw/source | |
parent | 84a72b88e50b60765fadd00c8caa73112a7e5830 (diff) |
sw33a11y01: fix compiler warnings
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/access/acccontext.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/access/accfrmobj.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/docvw/frmsidebarwincontainer.cxx | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/sw/source/core/access/acccontext.cxx b/sw/source/core/access/acccontext.cxx index e1400d050e3d..db1071e7018c 100644 --- a/sw/source/core/access/acccontext.cxx +++ b/sw/source/core/access/acccontext.cxx @@ -178,8 +178,6 @@ void SwAccessibleContext::ChildrenScrolled( const SwFrm *pFrm, SwAccessibleChild aFrm( pFrm ); bool bVisibleOnly = aFrm.IsVisibleChildrenOnly(); - uno::Reference < XAccessible > xAcc; - const SwAccessibleChildSList aList( *pFrm, *(GetMap()) ); SwAccessibleChildSList::const_iterator aIter( aList.begin() ); while( aIter != aList.end() ) diff --git a/sw/source/core/access/accfrmobj.cxx b/sw/source/core/access/accfrmobj.cxx index a620b95ddc20..c71e272602c4 100644 --- a/sw/source/core/access/accfrmobj.cxx +++ b/sw/source/core/access/accfrmobj.cxx @@ -54,8 +54,8 @@ namespace css = ::com::sun::star; namespace sw { namespace access { SwAccessibleChild::SwAccessibleChild() - : mpDrawObj( 0 ) - , mpFrm( 0 ) + : mpFrm( 0 ) + , mpDrawObj( 0 ) , mpWindow( 0 ) {} diff --git a/sw/source/ui/docvw/frmsidebarwincontainer.cxx b/sw/source/ui/docvw/frmsidebarwincontainer.cxx index 4fe9f55a1421..457c11761ee1 100644 --- a/sw/source/ui/docvw/frmsidebarwincontainer.cxx +++ b/sw/source/ui/docvw/frmsidebarwincontainer.cxx @@ -47,9 +47,9 @@ namespace { : mnIndex( nIndex ) {} - bool operator < ( const SidebarWinKey& SidebarWinKey ) const + bool operator < ( const SidebarWinKey& rSidebarWinKey ) const { - return mnIndex < SidebarWinKey.mnIndex; + return mnIndex < rSidebarWinKey.mnIndex; } }; |