diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-04-26 15:55:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-04-27 10:50:48 +0200 |
commit | dd1df645b4fe0d33c640a12d1596f75bd68eb928 (patch) | |
tree | d60eaa16c4870e8eac607c054bd8c70b226e6d65 /cui | |
parent | f9f045e7830d184497554e0e438cc478fa990eb6 (diff) |
remove svx bitmaps from .src files
Change-Id: Ie3795870484648e62dea483f9976af31cd1be167
Reviewed-on: https://gerrit.libreoffice.org/37006
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 'cui')
-rw-r--r-- | cui/inc/bitmaps.hlst | 3 | ||||
-rw-r--r-- | cui/source/customize/selector.cxx | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/cui/inc/bitmaps.hlst b/cui/inc/bitmaps.hlst index 075e05e94d10..2cefabd14611 100644 --- a/cui/inc/bitmaps.hlst +++ b/cui/inc/bitmaps.hlst @@ -64,6 +64,9 @@ #define RID_SVXBMP_TARGET "res/target.png" #define RID_SVXBMP_NEWDOC "res/newdoc.png" +#define RID_SVXBMP_COLLAPSEDNODE "res/sx18002.png" +#define RID_SVXBMP_EXPANDEDNODE "res/sx18003.png" + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ diff --git a/cui/source/customize/selector.cxx b/cui/source/customize/selector.cxx index 55635acd8449..aae8305378fb 100644 --- a/cui/source/customize/selector.cxx +++ b/cui/source/customize/selector.cxx @@ -211,8 +211,8 @@ SvxConfigGroupListBox::SvxConfigGroupListBox(vcl::Window* pParent, WinBits nStyl , m_sProdMacros(CUI_RESSTR(RID_SVXSTR_PRODMACROS)) { SetNodeBitmaps( - Image(BitmapEx(SVX_RES(RID_SVXBMP_COLLAPSEDNODE))), - Image(BitmapEx(SVX_RES(RID_SVXBMP_EXPANDEDNODE))) + Image(BitmapEx(RID_SVXBMP_COLLAPSEDNODE)), + Image(BitmapEx(RID_SVXBMP_EXPANDEDNODE)) ); } |