diff options
-rw-r--r-- | vcl/source/image/ImplImageTree.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/source/image/ImplImageTree.cxx b/vcl/source/image/ImplImageTree.cxx index 1a41d175a0b1..65a9b5562114 100644 --- a/vcl/source/image/ImplImageTree.cxx +++ b/vcl/source/image/ImplImageTree.cxx @@ -258,6 +258,12 @@ OUString ImplImageTree::fallbackStyle(const OUString& rsStyle) { OUString sResult; +#ifdef ANDROID + if (rsStyle == "colibre") + return ""; + else + return "colibre"; +#else if (rsStyle == "galaxy") sResult = ""; else if (rsStyle == "industrial" || rsStyle == "tango" || rsStyle == "breeze") @@ -272,6 +278,7 @@ OUString ImplImageTree::fallbackStyle(const OUString& rsStyle) sResult = "tango"; return sResult; +#endif } bool ImplImageTree::loadImage(OUString const & rName, OUString const & rStyle, BitmapEx & rBitmap, bool localized, |