summaryrefslogtreecommitdiff
path: root/vcl/source/image
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/image')
-rw-r--r--vcl/source/image/ImplImageTree.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/vcl/source/image/ImplImageTree.cxx b/vcl/source/image/ImplImageTree.cxx
index ba1f22155d27..274c4e60f8d2 100644
--- a/vcl/source/image/ImplImageTree.cxx
+++ b/vcl/source/image/ImplImageTree.cxx
@@ -300,18 +300,14 @@ OUString ImplImageTree::fallbackStyle(const OUString& rsStyle)
{
OUString sResult;
- if (rsStyle == "galaxy")
+ if (rsStyle == "colibre" || rsStyle == "helpimg")
sResult = "";
- else if (rsStyle == "industrial" || rsStyle == "tango" || rsStyle == "breeze")
- sResult = "galaxy";
else if (rsStyle == "sifr" || rsStyle == "breeze_dark")
sResult = "breeze";
else if (rsStyle == "sifr_dark" )
sResult = "breeze_dark";
- else if (rsStyle == "helpimg")
- sResult = "";
else
- sResult = "tango";
+ sResult = "colibre";
return sResult;
}