diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 19:55:20 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 19:55:20 +0000 |
commit | 9c34927e636e13b370fb2c030bf579da3b7564ca (patch) | |
tree | de7f7517be1fe51e5a15de36abf089e306fc9f01 /svtools/source/control/hyperlabel.cxx | |
parent | 1bbb5bf7b7642d87f3319161a0d2267492fff021 (diff) |
INTEGRATION: CWS warnings01 (1.7.62); FILE MERGED
2005/11/15 15:13:37 pl 1.7.62.2: #i55991# removed warnings
2005/10/26 12:40:17 pl 1.7.62.1: #i55991# removed warnings for linux platform
Diffstat (limited to 'svtools/source/control/hyperlabel.cxx')
-rw-r--r-- | svtools/source/control/hyperlabel.cxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx index d424fd9eae48..cda8b5ea58a2 100644 --- a/svtools/source/control/hyperlabel.cxx +++ b/svtools/source/control/hyperlabel.cxx @@ -4,9 +4,9 @@ * * $RCSfile: hyperlabel.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-08 15:03:04 $ + * last change: $Author: hr $ $Date: 2006-06-19 20:55:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -97,14 +97,14 @@ namespace svt :FixedText( _pParent, _rId ) ,m_pImpl( new HyperLabelImpl ) { - implInit(_pParent); + implInit(); } HyperLabel::HyperLabel( Window* _pParent, WinBits _nWinStyle ) :FixedText( _pParent, _nWinStyle ) ,m_pImpl( new HyperLabelImpl ) { - implInit(_pParent); + implInit(); } @@ -144,9 +144,8 @@ namespace svt } - void HyperLabel::implInit(Window* _pParent) + void HyperLabel::implInit() { - const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings(); ToggleBackgroundColor( COL_TRANSPARENT ); WinBits nWinStyle = GetStyle(); @@ -210,7 +209,7 @@ namespace svt SetTextColor( aColor); } - void HyperLabel::MouseButtonDown( const MouseEvent& rMEvt ) + void HyperLabel::MouseButtonDown( const MouseEvent& ) { if ( m_pImpl->m_bHyperMode && m_pImpl->bInteractive ) { |