diff options
-rw-r--r-- | vcl/opengl/win/blocklist_parser.cxx | 7 |
1 files 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<wgl::DriverInfo>& rDriverList): - maURL(rURL), - mrDriverList(rDriverList) + std::vector<wgl::DriverInfo>& rDriverList) + : maURL(rURL) + , mrDriverList(rDriverList) + , meBlockType(BlockType::UNKNOWN) { } |