From 9e481f6036775044bb02a5e08f6d3af3a37acc56 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 30 Sep 2015 15:27:00 +0100 Subject: cppcheck: uninitMemberVar Change-Id: I8409a6f00803e357a20b53fd59d77f155e057753 --- vcl/opengl/win/blocklist_parser.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vcl/opengl/win/blocklist_parser.cxx b/vcl/opengl/win/blocklist_parser.cxx index ef4771ab37f9..b132265349a4 100644 --- a/vcl/opengl/win/blocklist_parser.cxx +++ b/vcl/opengl/win/blocklist_parser.cxx @@ -10,9 +10,10 @@ #include "blocklist_parser.hxx" WinBlocklistParser::WinBlocklistParser(const OUString& rURL, - std::vector& rDriverList): - maURL(rURL), - mrDriverList(rDriverList) + std::vector& rDriverList) + : maURL(rURL) + , mrDriverList(rDriverList) + , meBlockType(BlockType::UNKNOWN) { } -- cgit