summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/browserline.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-01-14 13:55:45 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-01-14 13:55:45 +0000
commit341dfb14d6e7fba8b190fedd7145bea5445216ac (patch)
tree9b0cbdf1f854816dff124d90de0635a5d45fe70a /extensions/source/propctrlr/browserline.cxx
parent8f4311456a412f4f636f9649f2273028334dc4e7 (diff)
INTEGRATION: CWS wae4extensions (1.16.30); FILE MERGED
2007/09/27 07:18:24 fs 1.16.30.1: #i81612# warning-free code
Diffstat (limited to 'extensions/source/propctrlr/browserline.cxx')
-rw-r--r--extensions/source/propctrlr/browserline.cxx23
1 files changed, 8 insertions, 15 deletions
diff --git a/extensions/source/propctrlr/browserline.cxx b/extensions/source/propctrlr/browserline.cxx
index e8bcb0a298c5..f36dc2fe7ef2 100644
--- a/extensions/source/propctrlr/browserline.cxx
+++ b/extensions/source/propctrlr/browserline.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: browserline.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: hr $ $Date: 2007-08-03 13:52:21 $
+ * last change: $Author: ihi $ $Date: 2008-01-14 14:55:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -89,12 +89,12 @@ namespace pcr
,m_pControlWindow( NULL )
,m_pBrowseButton(NULL)
,m_pAdditionalBrowseButton( NULL )
- ,m_bIndentTitle( false )
- ,m_bReadOnly( false )
- ,m_nNameWidth(0)
- ,m_pTheParent(pParent)
,m_pClickListener( NULL )
+ ,m_pTheParent(pParent)
+ ,m_nNameWidth(0)
,m_nEnableFlags( 0xFFFF )
+ ,m_bIndentTitle( false )
+ ,m_bReadOnly( false )
{
DBG_CTOR(OBrowserLine,NULL);
m_aFtTitle.Show();
@@ -593,16 +593,9 @@ namespace pcr
Reference< XPropertyControlContext > xContext( m_xControl->getControlContext(), UNO_QUERY_THROW );
xContext->focusGained( m_xControl );
}
- catch( const Exception& e )
+ catch( const Exception& )
{
- #if OSL_DEBUG_LEVEL > 0
- ::rtl::OString sMessage( "OBrowserLine, OnButtonFocus: caught an exception!\n" );
- sMessage += "message:\n";
- sMessage += ::rtl::OString( e.Message.getStr(), e.Message.getLength(), osl_getThreadTextEncoding() );
- OSL_ENSURE( false, sMessage );
- #else
- e; // make compiler happy
- #endif
+ DBG_UNHANDLED_EXCEPTION();
}
}
return 0;