diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-14 10:49:08 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-14 11:06:48 +0000 |
commit | 218cd09611583437c05c33e2aa3b2b81cb416f98 (patch) | |
tree | 1b3b99677e6acff1f6224f9bd7441f161fcf2596 /fpicker | |
parent | f7965b0bcd559451c471a26bf5fd6f542887d95e (diff) |
inline some use-once macros
Change-Id: I7ebd8fe70b083a772118a1aab8cdfbf795d6f1e5
Reviewed-on: https://gerrit.libreoffice.org/23235
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.src | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/fpicker/source/office/iodlg.src b/fpicker/source/office/iodlg.src index 775b6eef4c69..b25dcc83cc82 100644 --- a/fpicker/source/office/iodlg.src +++ b/fpicker/source/office/iodlg.src @@ -22,20 +22,6 @@ #include "iodlg.hrc" #include "OfficeFilePicker.hrc" -#define FILEPICKER_IL_IDLIST \ - IdList = \ - { \ - IMG_FILEDLG_BTN_UP; \ - IMG_FILEDLG_BTN_STD; \ - IMG_FILEDLG_CREATEFOLDER; \ - IMG_FILEDLG_PLACE_LOCAL; \ - IMG_FILEDLG_PLACE_REMOTE; \ - }; \ - IdCount = \ - { \ - 5; \ - }; - #define MASKCOLOR MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; }; // image lists *************************************************************** @@ -44,7 +30,18 @@ ImageList RID_FILEPICKER_IMAGES { Prefix = "fp"; MASKCOLOR - FILEPICKER_IL_IDLIST + IdList = + { + IMG_FILEDLG_BTN_UP; + IMG_FILEDLG_BTN_STD; + IMG_FILEDLG_CREATEFOLDER; + IMG_FILEDLG_PLACE_LOCAL; + IMG_FILEDLG_PLACE_REMOTE; + }; + IdCount = + { + 5; + }; }; // strings ******************************************************************* |