From a0f127d2209e80e085b95770a87df2898b7ad645 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 19 Jan 2017 20:56:13 +0000 Subject: document magic number and note it was already converted to a bitmapex Change-Id: I2d78463d52f5866418eac7293a63a42c6af8b990 --- wizards/com/sun/star/wizards/ui/UIConsts.java | 6 +++++- wizards/com/sun/star/wizards/ui/UIConsts.py | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'wizards') 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 -- cgit