diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 13:30:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 13:31:26 +0100 |
commit | dd30c02aad0f5b65ab42ca288d17f5040bc9efa0 (patch) | |
tree | fb296651a7ab5535c41a18f5678733dfc1d010e2 /vcl | |
parent | d6dfeb95885a03e6f255c0be75b2dfa9258c61cc (diff) |
Silence false "control reaches end of non-void function" warning
Change-Id: I4614f445b23aa5c498b7b64a181cb5ca74f18081
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/settings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index 85f76e6be8c2..a5b7dd95c3bf 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -718,7 +718,7 @@ bool StyleSettings::GetUseImagesInMenus() const return false; case AUTO_STATE_ON: return true; - case AUTO_STATE_AUTO: + default: // AUTO_STATE_AUTO: return GetPreferredUseImagesInMenus(); } } |