Patch level :10.0

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :corretti warning


git-svn-id: svn://10.65.10.50/trunk@16571 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2008-05-06 09:26:00 +00:00
parent 223868c2f7
commit d0a2f8e2ec

View File

@ -479,7 +479,7 @@ void TPostmanServer::LoadXmlParagraph(TXmlItem& xmlItem, wxString& paragraph, wx
ini.SetPath(path); ini.SetPath(path);
wxStringTokenizer tok(paragraph, ","); wxStringTokenizer tok(paragraph, ",");
wxString tag = tok.GetNextToken(); wxString tag = tok.GetNextToken();
int logicnum = atoi(tag); const size_t logicnum = atoi(tag);
const wxChar * attr = logicnum > 0 ? "Field" : "Attr"; const wxChar * attr = logicnum > 0 ? "Field" : "Attr";
int rownum = 0 ; int rownum = 0 ;
@ -550,7 +550,7 @@ void TPostmanServer::LoadTransaction(wxString & filename, TXmlItem& xmlAnswer)
LoadXmlParagraph(xmlAnswer, paragraph, filename); LoadXmlParagraph(xmlAnswer, paragraph, filename);
} }
void TPostmanServer::Log(TXmlItem& xmlItem, wxString & filename) void TPostmanServer::Log(TXmlItem& WXUNUSED(xmlItem), wxString & filename)
{ {
wxFileConfig ini("", "", filename, "", wxCONFIG_USE_LOCAL_FILE | wxCONFIG_USE_RELATIVE_PATH); wxFileConfig ini("", "", filename, "", wxCONFIG_USE_LOCAL_FILE | wxCONFIG_USE_RELATIVE_PATH);
wxString str; wxString str;