Fix a warning

This commit is contained in:
Eduardo Bart
2013-01-23 16:55:10 -02:00
parent 992acd8873
commit 311bc220a8
4 changed files with 16 additions and 20 deletions

View File

@@ -21,6 +21,5 @@
*/
#include "platform.h"
#include <boost/filesystem.hpp>
Platform g_platform;

View File

@@ -43,7 +43,7 @@ void UIWidget::initBaseStyle()
// generate an unique id, this is need because anchored layouts find widgets by id
static unsigned long id = 1;
m_id = stdext::format("widget %d", id++);
m_id = stdext::format("widget%d", id++);
}
void UIWidget::parseBaseStyle(const OTMLNodePtr& styleNode)