diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-19 20:56:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-19 21:00:19 +0000 |
commit | a0f127d2209e80e085b95770a87df2898b7ad645 (patch) | |
tree | 3ab4001bc0c5baf830270884104ab6d10938017d /wizards | |
parent | 8911c7e177dcc2e9b5a9efcc308395081855b21f (diff) |
document magic number and note it was already converted to a bitmapex
Change-Id: I2d78463d52f5866418eac7293a63a42c6af8b990
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/ui/UIConsts.java | 6 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/ui/UIConsts.py | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/ui/UIConsts.java b/wizards/com/sun/star/wizards/ui/UIConsts.java index 7fb26d79bca0..950145f29639 100644 --- a/wizards/com/sun/star/wizards/ui/UIConsts.java +++ b/wizards/com/sun/star/wizards/ui/UIConsts.java @@ -29,7 +29,11 @@ public interface UIConsts int RID_TABLE = 2600; int RID_IMG_FORM = 1100; Integer INVISIBLESTEP = 99; - String INFOIMAGEURL = "private:resource/dbu/image/19205"; + /* + This is BMP_EXCEPTION_INFO (RID_IMAGE_START + 5, where RID_IMAGE_START + 5 is + RID_DBACCESS_START which is RID_LIB_START+9200 where RID_LIB_START is 10000) + */ + String INFOIMAGEURL = "private:resource/dbu/bitmapex/19205"; /** * The tabindex of the navigation buttons in a wizard must be assigned a very * high tabindex because on every step their taborder must appear at the end diff --git a/wizards/com/sun/star/wizards/ui/UIConsts.py b/wizards/com/sun/star/wizards/ui/UIConsts.py index bf947fb46d2a..271e6f5411c5 100644 --- a/wizards/com/sun/star/wizards/ui/UIConsts.py +++ b/wizards/com/sun/star/wizards/ui/UIConsts.py @@ -26,7 +26,11 @@ class UIConsts(): RID_IMG_FORM = 1100 RID_IMG_WEB = 1200 INVISIBLESTEP = 99 - INFOIMAGEURL = "private:resource/dbu/image/19205" + ''' + This is BMP_EXCEPTION_INFO (RID_IMAGE_START + 5, where RID_IMAGE_START + 5 is + RID_DBACCESS_START which is RID_LIB_START+9200 where RID_LIB_START is 10000) + ''' + INFOIMAGEURL = "private:resource/dbu/bitmapex/19205" ''' The tabindex of the navigation buttons in a wizard must be assigned a very |