← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~zorba-coders/zorba/mz-lang-module into lp:zorba/languages-module

 

Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/mz-lang-module into lp:zorba/languages-module.

Commit message:
XmlDataManager  is not a singleton any more

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/mz-lang-module/+merge/178610

XmlDataManager  is not a singleton any more
-- 
https://code.launchpad.net/~zorba-coders/zorba/mz-lang-module/+merge/178610
Your team Zorba Coders is subscribed to branch lp:zorba/languages-module.
=== modified file 'src/com/zorba-xquery/www/modules/languages/xslt.xq.src/xslt.cpp'
--- src/com/zorba-xquery/www/modules/languages/xslt.xq.src/xslt.cpp	2011-08-13 00:08:39 +0000
+++ src/com/zorba-xquery/www/modules/languages/xslt.xq.src/xslt.cpp	2013-08-05 17:27:25 +0000
@@ -123,7 +123,7 @@
   
   std::istringstream iss( resStr.c_str() ); 
   
-  XmlDataManager* lDM = Zorba::getInstance(0)->getXmlDataManager();
+  XmlDataManager_t lDM = Zorba::getInstance(0)->getXmlDataManager();
   try
   {
     return ItemSequence_t(new SingletonItemSequence(lDM->parseXML(iss)));   


Follow ups