Pārlūkot izejas kodu

Fixed #262 (double quotes in some messages).

yupsi 14 gadi atpakaļ
vecāks
revīzija
092dac1f63
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      lib/CGeneralTextHandler.cpp

+ 2 - 2
lib/CGeneralTextHandler.cpp

@@ -349,7 +349,7 @@ void CGeneralTextHandler::load()
 	{
 		loadToIt(buflet, buf, i, 2);
 		trimQuotation(buflet);
-		boost::algorithm::replace_all(temp,"\"\"","\"");
+		boost::algorithm::replace_all(buflet,"\"\"","\"");
 		allTexts.push_back(buflet);
 	}
 
@@ -430,7 +430,7 @@ void CGeneralTextHandler::load()
 		loadToIt(tmp, strin, itr, 2);
 	//	boost::algorithm::trim(tmp);
 		trimQuotation(tmp);
-		boost::algorithm::replace_all(temp,"\"\"","\"");
+		boost::algorithm::replace_all(tmp,"\"\"","\"");
 		artifEvents.push_back(tmp);
 	}