git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53445
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if (wd[wd.length()-1] == wxT('%'))
{
if (wd[wd.length()-1] == wxT('%'))
{
- wxSscanf(wd.c_str(), wxT("%i%%"), &m_ColsInfo[c].width);
- m_ColsInfo[c].units = wxHTML_UNITS_PERCENT;
+ if ( wxSscanf(wd.c_str(), wxT("%i%%"), &m_ColsInfo[c].width) == 1 )
+ {
+ m_ColsInfo[c].units = wxHTML_UNITS_PERCENT;
+ }
- wxSscanf(wd.c_str(), wxT("%i"), &m_ColsInfo[c].width);
- m_ColsInfo[c].width = (int)(m_PixelScale * (double)m_ColsInfo[c].width);
- m_ColsInfo[c].units = wxHTML_UNITS_PIXELS;
+ long width;
+ if ( wd.ToLong(&width) )
+ {
+ m_ColsInfo[c].width = (int)(m_PixelScale * (double)width);
+ m_ColsInfo[c].units = wxHTML_UNITS_PIXELS;
+ }