diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 23:10:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 23:10:26 +0000 |
commit | f392ef868cd111f0d4a12842d1f1a68ea062bde4 (patch) | |
tree | 0bb58a664367a75663e4839c651b2b903cc8a44a /vcl | |
parent | 6e0823e3880e5ea26db868dbe0455e8c984744ab (diff) |
c++11ism
Change-Id: I0838eafa47aaed222aca30d234300f2c05697175
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 c1eb7853c055..6c85bcd72400 100644 --- a/vcl/qa/cppunit/app/test_IconThemeSelector.cxx +++ b/vcl/qa/cppunit/app/test_IconThemeSelector.cxx @@ -76,7 +76,7 @@ class IconThemeSelectorTest : public CppUnit::TestFixture IconThemeSelectorTest::GetFakeInstalledThemes() { std::vector<vcl::IconThemeInfo> r; - vcl::IconThemeInfo a{}; + vcl::IconThemeInfo a; a.mThemeId = "tango"; r.push_back(a); a.mThemeId = "oxygen"; |