LiFan
2025-04-27 473204adb820898e808d996b0b2dafac39d29e67
jrj/project/business/BasicCode/QuickCode_Tree.cpp
@@ -44,7 +44,8 @@
      else
      {
         KXMLDOMElement xframeElement = GetElement();
         KXMLDOMElement agent = xframeElement.selectSingleNode(L"agent/" + xfNodeAgentArea + L"[1]/*");
         //KXMLDOMElement agent = xframeElement.selectSingleNode(L"agent/" + xfNodeAgentArea + L"[1]/*");
         KXMLDOMElement agent = m_configDoc.selectSingleNode(L"Config/" + xfNodeAgentArea + L"[1]/*");
         if (agent)
         {
            xstring s = agent.xml();
@@ -75,7 +76,7 @@
         return -1;
      }
      //trace(x.xml());
      if (x.xml() == L"")
      if ((xstring)x.xml() == L"")
      {
         xml xx;
         xx.loadXML(L"<root/>");
@@ -556,10 +557,10 @@
      {
         p += L"&";
         int i = 1;
         while (p.find(L"=L", 0) > 0)
         while (p.find(L"=", 0) > 0)
         {
            xstring name = p.mid(0, p.find(L"=L", 0));
            xstring value = p.mid(p.find(L"=L", 0) + 1, p.find(L"&", 0) - p.find(L"=L", 0) - 1);
            xstring name = p.mid(0, p.find(L"=", 0));
            xstring value = p.mid(p.find(L"=", 0) + 1, p.find(L"&", 0) - p.find(L"=", 0) - 1);
            if (name == n) return L"" + value;
            i += 1;
            p = p.mid(p.find(L"&", 0) + 1, p.length());