diff options
author | Release Engineers <releng@openoffice.org> | 2009-08-27 15:44:10 +0000 |
---|---|---|
committer | Release Engineers <releng@openoffice.org> | 2009-08-27 15:44:10 +0000 |
commit | d30c818de2aa67effa98d57a40e25f3bde37267a (patch) | |
tree | 93de3e7c2bbfd2eb313ea148e0e1b107ec898377 /vcl | |
parent | 2d1f08d63942666c0094904f50ba8c512ab69b9d (diff) |
CWS-TOOLING: integrate CWS c28v001_DEV300
2009-06-11 09:57:13 +0200 pl r272848 : #160046# make product and welcome text have transparent background to allow for more flexibility of the background bitmap
2009-06-11 09:54:27 +0200 pl r272847 : #160045# add edition search path for images.zip
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/impimagetree.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vcl/source/gdi/impimagetree.cxx b/vcl/source/gdi/impimagetree.cxx index 9e1378f22326..039041826124 100644 --- a/vcl/source/gdi/impimagetree.cxx +++ b/vcl/source/gdi/impimagetree.cxx @@ -189,6 +189,17 @@ void ImplImageTree::resetZips() { m_zips.clear(); { rtl::OUString url( + RTL_CONSTASCII_USTRINGPARAM("$BRAND_BASE_DIR/program/edition/images.zip")); + rtl::Bootstrap::expandMacros(url); + INetURLObject u(url); + OSL_ASSERT(!u.HasError()); + m_zips.push_back( + std::make_pair( + u.GetMainURL(INetURLObject::NO_DECODE), + css::uno::Reference< css::container::XNameAccess >())); + } + { + rtl::OUString url( RTL_CONSTASCII_USTRINGPARAM("$BRAND_BASE_DIR/share/config")); rtl::Bootstrap::expandMacros(url); INetURLObject u(url); |