summaryrefslogtreecommitdiff
path: root/vcl/qa/cppunit/app
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-22 00:53:12 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-22 00:53:12 +0100
commit887931b5f9e2519dfb57ec80092309fe67a7f308 (patch)
treebfceb9d4da653e85c9a8cb5c4dfceef05c75f7f3 /vcl/qa/cppunit/app
parent6306c7c2f22180efad513d7304038e3efe8790ed (diff)
C++11'ism
Change-Id: If2e3f4f7cd78d37fb4bbc35c62742f56da662765
Diffstat (limited to 'vcl/qa/cppunit/app')
-rw-r--r--vcl/qa/cppunit/app/test_IconThemeSelector.cxx2
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);
}