diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-03-20 15:06:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-03-20 18:11:20 +0100 |
commit | e3bd5ebf678ef7e5ba588d47eed2f027e84cb3cd (patch) | |
tree | 34a0f09a58acb51950a8b4dd41e32094ec2f0a26 /extensions | |
parent | c5fc1a0bbffa73d0a7249f8b38823588446831c8 (diff) |
drop msgbox include
Change-Id: Ic7872adf8a7e8e4a8e1503dd21e22ec69509efaf
Reviewed-on: https://gerrit.libreoffice.org/51652
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/inc/bitmaps.hlst | 1 | ||||
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/inc/bitmaps.hlst b/extensions/inc/bitmaps.hlst index a73053a5e327..336e1b75359e 100644 --- a/extensions/inc/bitmaps.hlst +++ b/extensions/inc/bitmaps.hlst @@ -48,6 +48,7 @@ #define RID_EXTBMP_AUTOFILTER_LC "res/lc10716.png" #define RID_EXTBMP_FILTERCRIT_LC "res/lc10715.png" #define RID_EXTBMP_REMOVE_FILTER_SORT_LC "res/lc10711.png" +#define SV_RESID_BITMAP_INFOBOX "vcl/res/infobox.png" #endif diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index b633fa7d2b58..5625ab1a102e 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -41,7 +41,6 @@ #include <vcl/menu.hxx> #include <vcl/outdev.hxx> #include <vcl/weld.hxx> -#include <vcl/msgbox.hxx> #include <vcl/lineinfo.hxx> #include <vcl/button.hxx> #include <vcl/settings.hxx> @@ -269,7 +268,7 @@ Image UpdateCheckUI::GetBubbleImage( OUString const &rURL ) } if ( aImage.GetSizePixel().Width() == 0 ) - aImage = GetStandardInfoBoxImage(); + aImage = Image(BitmapEx(SV_RESID_BITMAP_INFOBOX)); return aImage; } |