diff options
author | axis <qt-info@nokia.com> | 2010-03-16 11:56:31 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-03-16 12:06:48 (GMT) |
commit | 27f6a2b79c5ded8ce54c8a3ab068f3e42804c94c (patch) | |
tree | 499e6b36b1ebb28be8e3168284c7425d8af96fd4 /src/xml/dom | |
parent | 30688ce70b4bc161b45826063a242d58a6f06126 (diff) | |
download | Qt-27f6a2b79c5ded8ce54c8a3ab068f3e42804c94c.zip Qt-27f6a2b79c5ded8ce54c8a3ab068f3e42804c94c.tar.gz Qt-27f6a2b79c5ded8ce54c8a3ab068f3e42804c94c.tar.bz2 |
Worked around a crash in the elf2e32 postlinker tool.
RevBy: Thomas Zander
Diffstat (limited to 'src/xml/dom')
-rw-r--r-- | src/xml/dom/qdom.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xml/dom/qdom.cpp b/src/xml/dom/qdom.cpp index 0150515..1267e7e 100644 --- a/src/xml/dom/qdom.cpp +++ b/src/xml/dom/qdom.cpp @@ -625,6 +625,11 @@ private: bool cdata; bool nsProcessing; QXmlLocator *locator; + +#ifdef Q_OS_SYMBIAN + // Workaround crash in elf2e32 under Wine. + virtual void dummy() {} +#endif }; /************************************************************** |