diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/graphic/provider.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx index 3cbbd6ba752b..2afef15a646f 100644 --- a/svtools/source/graphic/provider.cxx +++ b/svtools/source/graphic/provider.cxx @@ -206,11 +206,11 @@ uno::Reference< ::graphic::XGraphic > GraphicProvider::implLoadStandardImage( co } else if ( sImageName == "error" ) { - xRet = Graphic(ErrorBox::GetStandardImage().GetBitmapEx()).GetXGraphic(); + xRet = Graphic(GetStandardErrorBoxImage().GetBitmapEx()).GetXGraphic(); } else if ( sImageName == "query" ) { - xRet = Graphic(QueryBox::GetStandardImage().GetBitmapEx()).GetXGraphic(); + xRet = Graphic(GetStandardQueryBoxImage().GetBitmapEx()).GetXGraphic(); } } return xRet; |