summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:56:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 01:56:03 +0000
commita6b6983c8c7f69a5aaf00e593ede2763c246ad02 (patch)
tree5a2e39e56bfb3125c5a70b7975e1ddbdb6392891 /dbaccess
parent5d44e796d14e178bfceab4b9b3f650447f4b19d8 (diff)
INTEGRATION: CWS warnings01 (1.23.74); FILE MERGED
2006/03/24 15:36:01 fs 1.23.74.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/browser/brwview.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/source/ui/browser/brwview.cxx b/dbaccess/source/ui/browser/brwview.cxx
index 363e86efbeb4..2c589297a469 100644
--- a/dbaccess/source/ui/browser/brwview.cxx
+++ b/dbaccess/source/ui/browser/brwview.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: brwview.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: hr $ $Date: 2005-09-23 12:19:36 $
+ * last change: $Author: hr $ $Date: 2006-06-20 02:56:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -116,9 +116,9 @@ UnoDataBrowserView::UnoDataBrowserView( Window* pParent,
IController* _pController,
const Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rFactory)
:ODataView(pParent,_pController,_rFactory)
- ,m_pVclControl(NULL)
- ,m_pSplitter(NULL)
,m_pTreeView(NULL)
+ ,m_pSplitter(NULL)
+ ,m_pVclControl(NULL)
,m_pStatus(NULL)
{
DBG_CTOR(UnoDataBrowserView,NULL);
@@ -188,10 +188,10 @@ UnoDataBrowserView::~UnoDataBrowserView()
DBG_DTOR(UnoDataBrowserView,NULL);
}
// -----------------------------------------------------------------------------
-IMPL_LINK( UnoDataBrowserView, SplitHdl, void*, p )
+IMPL_LINK( UnoDataBrowserView, SplitHdl, void*, /*NOINTERESTEDIN*/ )
{
- long nTest = m_pSplitter->GetPosPixel().Y();
- m_pSplitter->SetPosPixel( Point( m_pSplitter->GetSplitPosPixel(), m_pSplitter->GetPosPixel().Y() ) );
+ long nYPos = m_pSplitter->GetPosPixel().Y();
+ m_pSplitter->SetPosPixel( Point( m_pSplitter->GetSplitPosPixel(), nYPos ) );
Resize();
return 0L;
@@ -360,7 +360,7 @@ void UnoDataBrowserView::GetFocus()
}
}
// -----------------------------------------------------------------------------
-void UnoDataBrowserView::_disposing( const ::com::sun::star::lang::EventObject& _rSource )
+void UnoDataBrowserView::_disposing( const ::com::sun::star::lang::EventObject& /*_rSource*/ )
{
stopComponentListening(Reference<XComponent>(VCLUnoHelper::GetInterface(m_pVclControl),UNO_QUERY));
m_pVclControl = NULL;