diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-10-03 21:40:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-10-04 09:00:05 +0100 |
commit | 04723baf6e87fb8d3c097f41529e388bf48df43c (patch) | |
tree | b9f02835a5fbe5884bce911ae80f9a08686729de /vcl | |
parent | f1d4ce6ea51574a0f0a80c4c9ed2ddbc356fbec0 (diff) |
callcatcher: various unused methods
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/vcl/msgbox.hxx | 3 | ||||
-rw-r--r-- | vcl/source/window/msgbox.cxx | 15 |
2 files changed, 0 insertions, 18 deletions
diff --git a/vcl/inc/vcl/msgbox.hxx b/vcl/inc/vcl/msgbox.hxx index 326dae5616e3..bc8bf8e39bed 100644 --- a/vcl/inc/vcl/msgbox.hxx +++ b/vcl/inc/vcl/msgbox.hxx @@ -100,9 +100,6 @@ public: void SetImage( const Image& rImage ) { maImage = rImage; } const Image& GetImage() const { return maImage; } - sal_Bool SetModeImage( const Image& rImage ); - const Image& GetModeImage( ) const; - void SetDefaultCheckBoxText(); void SetCheckBoxText( const XubString& rText ) { maCheckBoxText = rText;} const XubString& GetCheckBoxText() const { return maCheckBoxText;} diff --git a/vcl/source/window/msgbox.cxx b/vcl/source/window/msgbox.cxx index e27cefe6eeb7..bc328326e5c2 100644 --- a/vcl/source/window/msgbox.cxx +++ b/vcl/source/window/msgbox.cxx @@ -459,21 +459,6 @@ void MessBox::SetDefaultCheckBoxText() // ----------------------------------------------------------------------- -sal_Bool MessBox::SetModeImage( const Image& rImage ) -{ - SetImage( rImage ); - return sal_True; -} - -// ----------------------------------------------------------------------- - -const Image& MessBox::GetModeImage( ) const -{ - return maImage; -} - -// ----------------------------------------------------------------------- - Size MessBox::GetOptimalSize(WindowSizeType eType) const { switch( eType ) { |