vcl/opengl/win/backlist.xml | 4 ++-- vcl/opengl/win/blocklist_parser.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit aa62c86fbc7d192ad01de4bf771c6a9644853d5e Author: Markus Mohrhard <[email protected]> Date: Thu Jun 4 09:48:02 2015 +0200 rename xml elements as I need to reorganize everything a bit Change-Id: I69ec748819b1012790bb47eaf161623507ff2efe Reviewed-on: https://gerrit.libreoffice.org/16328 Tested-by: Jenkins <[email protected]> Reviewed-by: Markus Mohrhard <[email protected]> diff --git a/vcl/opengl/win/backlist.xml b/vcl/opengl/win/backlist.xml index b4cac2b..31ca327 100644 --- a/vcl/opengl/win/backlist.xml +++ b/vcl/opengl/win/backlist.xml @@ -1,8 +1,8 @@ <root> <whitelist> - <device os="7" vendor="intel" compare="equal" version="10.18.10.3412"> + <entry os="7" vendor="intel" compare="equal" version="10.18.10.3412"> <msg>Moggi's Windows OpenGL driver</msg> - </device> + </entry> </whitelist> <blacklist> diff --git a/vcl/opengl/win/blocklist_parser.cxx b/vcl/opengl/win/blocklist_parser.cxx index 3530173..4c0700a 100644 --- a/vcl/opengl/win/blocklist_parser.cxx +++ b/vcl/opengl/win/blocklist_parser.cxx @@ -231,13 +231,13 @@ void WinBlocklistParser::handleList(xmlreader::XmlReader& rReader) if (res == xmlreader::XmlReader::RESULT_BEGIN) { - if (name.equals("device")) + if (name.equals("entry")) { wgl::DriverInfo aDriver; handleDevice(aDriver, rReader); mrDriverList.push_back(aDriver); } - else if (name.equals("deviceRange")) + else if (name.equals("entryRange")) { wgl::DriverInfo aDriver; handleDevice(aDriver, rReader); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
