From ea146e50321c44fe775b557b24d8443075107185 Mon Sep 17 00:00:00 2001
From: xj qian <qianxj15@sina.com>
Date: 星期五, 10 一月 2025 15:17:05 +0800
Subject: [PATCH] Merge branch 'master' of http://116.62.18.175:6699/r/mis-prj
---
jrj/project/business/BasicCode/QuickCode_Tree.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/jrj/project/business/BasicCode/QuickCode_Tree.cpp b/jrj/project/business/BasicCode/QuickCode_Tree.cpp
index 334fe69..c893a99 100644
--- a/jrj/project/business/BasicCode/QuickCode_Tree.cpp
+++ b/jrj/project/business/BasicCode/QuickCode_Tree.cpp
@@ -75,7 +75,7 @@
return -1;
}
//trace(x.xml());
- if (x.xml() == L"")
+ if ((xstring)x.xml() == L"")
{
xml xx;
xx.loadXML(L"<root/>");
@@ -556,10 +556,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());
--
Gitblit v1.9.3