summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/bitmap/CommandImageResolver.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/vcl/source/bitmap/CommandImageResolver.cxx b/vcl/source/bitmap/CommandImageResolver.cxx
index 5c636d70c9bc..94bff8a93042 100644
--- a/vcl/source/bitmap/CommandImageResolver.cxx
+++ b/vcl/source/bitmap/CommandImageResolver.cxx
@@ -8,11 +8,10 @@
*/
#include <vcl/CommandImageResolver.hxx>
-
+#include <vcl/settings.hxx>
+#include <vcl/svapp.hxx>
#include <rtl/ustrbuf.hxx>
#include <tools/urlobj.hxx>
-#include <svtools/miscopt.hxx>
-#include <officecfg/Office/Common.hxx>
using css::uno::Sequence;
@@ -124,11 +123,11 @@ bool CommandImageResolver::hasImage(const OUString& rCommandURL)
ImageList* CommandImageResolver::getImageList(sal_Int16 nImageType)
{
- const OUString& rIconTheme = officecfg::Office::Common::Misc::SymbolStyle::get();
+ const OUString sIconTheme = Application::GetSettings().GetStyleSettings().DetermineIconTheme();
- if (rIconTheme != m_sIconTheme)
+ if (sIconTheme != m_sIconTheme)
{
- m_sIconTheme = rIconTheme;
+ m_sIconTheme = sIconTheme;
for (sal_Int32 n = 0; n < ImageType_COUNT; ++n)
{
delete m_pImageList[n];