diff options
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 ) { |