mirror of
https://github.com/edubart/otclient.git
synced 2025-10-15 03:54:54 +02:00
Fix a warning
This commit is contained in:
@@ -21,6 +21,5 @@
|
||||
*/
|
||||
|
||||
#include "platform.h"
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
Platform g_platform;
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user