[Libufo-commits] ufo-0.5/src/xml uxul.cpp,1.7,1.8
Status: Beta
Brought to you by:
schmidtjf
|
From: Johannes S. <sch...@us...> - 2005-09-30 12:37:57
|
Update of /cvsroot/libufo/ufo-0.5/src/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4366/src/xml Modified Files: uxul.cpp Log Message: Fixed warnings about unused variables. Index: uxul.cpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/src/xml/uxul.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** uxul.cpp 15 Sep 2005 10:15:23 -0000 1.7 --- uxul.cpp 30 Sep 2005 12:37:44 -0000 1.8 *************** *** 276,280 **** std::string value = UString(menuElement->Value()).lowerCase(); if ("menuitem" == value) { ! UMenuItem * item; if (menuElement->Attribute("type")) { std::string type(menuElement->Attribute("type")); --- 276,280 ---- std::string value = UString(menuElement->Value()).lowerCase(); if ("menuitem" == value) { ! UMenuItem * item = NULL; if (menuElement->Attribute("type")) { std::string type(menuElement->Attribute("type")); *************** *** 541,545 **** TiXmlNode* node = 0; TiXmlElement* windowElement = 0; - TiXmlElement* widgetElement = 0; node = m_doc->FirstChild(); --- 541,544 ---- |