summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-02 09:16:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-02 11:59:53 +0100
commit7d943c1c572d463ebd0a997973383a579b60951f (patch)
tree07cd8583769faa5629fcf88281f384a4294f7969 /vcl
parentfae7447283142b359c9f9ea80c3cc79ceab52e2c (diff)
remove unused MoreButtons apis pieces
Change-Id: I087a45684041b6d816fbd09ebb24f727dd02d8be
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/morebtn.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/vcl/source/control/morebtn.cxx b/vcl/source/control/morebtn.cxx
index 5d6129243a45..82c4193ca577 100644
--- a/vcl/source/control/morebtn.cxx
+++ b/vcl/source/control/morebtn.cxx
@@ -206,14 +206,6 @@ void MoreButton::SetMoreText( const OUString& rText )
SetText( rText );
}
-OUString MoreButton::GetMoreText() const
-{
- if ( mpMBData )
- return mpMBData->maMoreText;
- else
- return PushButton::GetText();
-}
-
void MoreButton::SetLessText( const OUString& rText )
{
if ( mpMBData )
@@ -223,12 +215,4 @@ void MoreButton::SetLessText( const OUString& rText )
SetText( rText );
}
-OUString MoreButton::GetLessText() const
-{
- if ( mpMBData )
- return mpMBData->maLessText;
- else
- return PushButton::GetText();
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */