summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-06-04 09:48:02 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-06 09:27:47 -0500
commit85c5d6c6544a347dc60b1c053df0669fcf9bf72e (patch)
tree0b071885b05515747d7599054537be303c8d6bba /vcl
parent27620e374d79c2ab5968c59a9f6e9753da8b3ab9 (diff)
rename xml elements as I need to reorganize everything a bit
Change-Id: I69ec748819b1012790bb47eaf161623507ff2efe Reviewed-on: https://gerrit.libreoffice.org/16328 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> (cherry picked from commit aa62c86fbc7d192ad01de4bf771c6a9644853d5e)
Diffstat (limited to 'vcl')
-rw-r--r--vcl/opengl/win/backlist.xml4
-rw-r--r--vcl/opengl/win/blocklist_parser.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/opengl/win/backlist.xml b/vcl/opengl/win/backlist.xml
index b4cac2b1402c..31ca327cfbc5 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 35301737bb09..4c0700a2fd74 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);