diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-22 00:53:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-22 00:53:12 +0100 |
commit | 887931b5f9e2519dfb57ec80092309fe67a7f308 (patch) | |
tree | bfceb9d4da653e85c9a8cb5c4dfceef05c75f7f3 /vcl | |
parent | 6306c7c2f22180efad513d7304038e3efe8790ed (diff) |
C++11'ism
Change-Id: If2e3f4f7cd78d37fb4bbc35c62742f56da662765
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qa/cppunit/app/test_IconThemeSelector.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/app/test_IconThemeSelector.cxx b/vcl/qa/cppunit/app/test_IconThemeSelector.cxx index 6c85bcd72400..9da845ba4255 100644 --- a/vcl/qa/cppunit/app/test_IconThemeSelector.cxx +++ b/vcl/qa/cppunit/app/test_IconThemeSelector.cxx @@ -162,7 +162,7 @@ void IconThemeSelectorTest::FallbackThemeIsReturnedForEmptyInput() { vcl::IconThemeSelector s; - OUString selected = s.SelectIconTheme(std::vector<vcl::IconThemeInfo>{}, "oxygen"); + OUString selected = s.SelectIconTheme(std::vector<vcl::IconThemeInfo>(), "oxygen"); CPPUNIT_ASSERT_EQUAL_MESSAGE("fallback is returned for empty input", vcl::IconThemeSelector::FALLBACK_ICON_THEME_ID, selected); } |