diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-13 13:21:26 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-13 12:31:35 +0100 |
commit | c61cda4472f14f27e6c50b3e9b791c50d95d0ca1 (patch) | |
tree | 7af41135568aa0fc8e0118e116eeb454317bbafd /wizards | |
parent | e89eba0e1fa56c64e0d572b4f32ce5951378c1d7 (diff) |
tdf#40966: convert last used BMPs to PNG; cleanup unused
Change-Id: Id92fcd2fd33500cc9c60645c627c2fedf2378fb9
Reviewed-on: https://gerrit.libreoffice.org/69158
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/tutorials/Functions.xba | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/source/tutorials/Functions.xba b/wizards/source/tutorials/Functions.xba index cded8504ea30..4b422c80b177 100644 --- a/wizards/source/tutorials/Functions.xba +++ b/wizards/source/tutorials/Functions.xba @@ -95,15 +95,15 @@ Sub setMaxMinImage(param As String) iPos = InStr(templatePath,"/") If(iPos > 0) Then If(param = "MAX") Then - bitmapPath = templatePath & "../wizard/bitmap/maximize.bmp" + bitmapPath = templatePath & "../wizard/bitmap/maximize.png" ElseIf(param = "MIN") Then - bitmapPath = templatePath & "../wizard/bitmap/minimize.bmp" + bitmapPath = templatePath & "../wizard/bitmap/minimize.png" End If Else If(param = "MAX") Then - bitmapPath = templatePath & "..\wizard\bitmap\maximize.bmp" + bitmapPath = templatePath & "..\wizard\bitmap\maximize.png" ElseIf(param = "MIN") Then - bitmapPath = templatePath & "..\wizard\bitmap\minimize.bmp" + bitmapPath = templatePath & "..\wizard\bitmap\minimize.png" End If End If 'printdbgInfo oCommandButton.Model |