Fix warning

This commit is contained in:
oddMLan 2019-04-18 15:35:54 -07:00
parent d83c8597b6
commit d21e7c8684
1 changed files with 1 additions and 1 deletions

View File

@ -140,6 +140,6 @@ public:
BOOL SetColumnWidth(int nColumn, int nWidth)
{
return CListViewCtrl::SetColumnWidth(nColumn, nWidth * m_ScaleX);
return CListViewCtrl::SetColumnWidth(nColumn, int (nWidth * m_ScaleX));
}
};