1. misc compilation (errors, warnings) fixes (from the build logs)
2. fixed a bug in wxGTK::wxGetResource git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5118 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -401,10 +401,10 @@ wxDateSpan::operator+=(const wxDateSpan& other)
|
||||
|
||||
wxDateSpan& wxDateSpan::Multiply(int factor)
|
||||
{
|
||||
m_years *= m_years;
|
||||
m_months *= m_months;
|
||||
m_weeks *= m_weeks;
|
||||
m_days *= m_days;
|
||||
m_years *= factor;
|
||||
m_months *= factor;
|
||||
m_weeks *= factor;
|
||||
m_days *= factor;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user