diff options
-rw-r--r-- | vcl/inc/svids.hrc | 1 | ||||
-rw-r--r-- | vcl/source/src/images.src | 5 | ||||
-rw-r--r-- | vcl/source/window/builder.cxx | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/vcl/inc/svids.hrc b/vcl/inc/svids.hrc index 5abe5bd84b51..19e13a4c9cfc 100644 --- a/vcl/inc/svids.hrc +++ b/vcl/inc/svids.hrc @@ -42,6 +42,7 @@ #define SV_RESID_BITMAP_SCROLLBMP 1051 #define SV_RESID_BITMAP_CLOSEDOC 1052 #define SV_RESID_BITMAP_INDEX 1053 +#define SV_RESID_BITMAP_REFRESH 1054 #define SV_DISCLOSURE_PLUS 1060 #define SV_DISCLOSURE_MINUS 1061 diff --git a/vcl/source/src/images.src b/vcl/source/src/images.src index eb3bb50936df..75765281a366 100644 --- a/vcl/source/src/images.src +++ b/vcl/source/src/images.src @@ -73,6 +73,11 @@ Bitmap SV_RESID_BITMAP_INDEX File = "index.png"; }; +Bitmap SV_RESID_BITMAP_REFRESH +{ + File = "reload.png"; +}; + Bitmap SV_RESID_BITMAP_SPLITHPIN { File = "splhpin.png"; diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index 328d904aa436..ffe728f2af34 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -39,6 +39,8 @@ namespace sal_uInt16 nRet = 0; if (sType == "gtk-index") nRet = SV_RESID_BITMAP_INDEX; + else if (sType == "gtk-refresh") + nRet = SV_RESID_BITMAP_REFRESH; return nRet; } |