summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-07 15:53:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-07 15:54:16 +0100
commitaefbfc7101bb9b4ef20968d45306ab97573f6597 (patch)
tree314a80042f59b05443276d6e311d0cbc71684087 /vcl/source/control
parent3f2b771e5f53a7f079416ae6fc42625420b725d7 (diff)
callcatcher: update and remove newly unused methods
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/slider.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/vcl/source/control/slider.cxx b/vcl/source/control/slider.cxx
index dc79ca7026b0..c49f4cbba9e1 100644
--- a/vcl/source/control/slider.cxx
+++ b/vcl/source/control/slider.cxx
@@ -104,25 +104,6 @@ Slider::Slider( Window* pParent, WinBits nStyle ) :
// -----------------------------------------------------------------------
-void Slider::ImplLoadRes( const ResId& rResId )
-{
- Control::ImplLoadRes( rResId );
-
- sal_Int16 nMin = ReadShortRes();
- sal_Int16 nMax = ReadShortRes();
- sal_Int16 nThumbPos = ReadShortRes();
- sal_Int16 nPage = ReadShortRes();
- sal_Int16 nStep = ReadShortRes();
- /* sal_Int16 nVisibleSize = */ ReadShortRes();
-
- SetRange( Range( nMin, nMax ) );
- SetLineSize( nStep );
- SetPageSize( nPage );
- SetThumbPos( nThumbPos );
-}
-
-// -----------------------------------------------------------------------
-
void Slider::ImplInitSettings()
{
Window* pParent = GetParent();