Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.2.2
-
None
Description
When building an application that loads a dynamical library with QLibrary QDom functionality is broken.
The following results are seen (it would be expected that they returned the same results):
> // executing test method from the lib:
> elem.hasChildNodes()=true elem.childNodes().count()=0 <<< !!!! ERROR
> elem.childNodes().size()=0 elem.childNodes().length()=1
>
> // executing test method from the app:
> elem.hasChildNodes()=true elem.childNodes().count()=1
> elem.childNodes().size()=1 elem.childNodes().length()=1
>
When the method is executed from the shared library that uses QDom
functionality it has strange results.
The error is seen with 4.3.0-snapshot-20070418 and qt 4.2.2 linked statically on Mac.
It works correctly if Qt is linked as a shared library.