diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-02 09:16:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-02 11:59:53 +0100 |
commit | 7d943c1c572d463ebd0a997973383a579b60951f (patch) | |
tree | 07cd8583769faa5629fcf88281f384a4294f7969 /vcl | |
parent | fae7447283142b359c9f9ea80c3cc79ceab52e2c (diff) |
remove unused MoreButtons apis pieces
Change-Id: I087a45684041b6d816fbd09ebb24f727dd02d8be
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/morebtn.cxx | 16 |
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: */ |