code reviews

This commit is contained in:
Jinhao
2015-02-26 02:35:19 +08:00
parent e721cfa51f
commit 9fbe14e2de
10 changed files with 329 additions and 200 deletions

View File

@@ -456,13 +456,13 @@ namespace drawerbase {
textbox& textbox::from(int n)
{
_m_caption(::nana::to_wstring(n));
_m_caption(std::to_wstring(n));
return *this;
}
textbox& textbox::from(double d)
{
_m_caption(::nana::to_wstring(d));
_m_caption(std::to_wstring(d));
return *this;
}