]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sizer.h
Add functor-taking overload of CallAfter().
[wxWidgets.git] / include / wx / sizer.h
index 29facff1e2278a182cd152c3d52c1762a4058f1f..e11720a4e04b389b57de4ad8dac73d909bb7d88e 100644 (file)
@@ -814,7 +814,7 @@ protected:
             "Can't calculate number of cols if number of rows is not specified"
         );
 
-        return (m_children.GetCount() + m_rows - 1) / m_rows;
+        return int(m_children.GetCount() + m_rows - 1) / m_rows;
     }
 
     int CalcRows() const
@@ -825,7 +825,7 @@ protected:
             "Can't calculate number of cols if number of rows is not specified"
         );
 
-        return (m_children.GetCount() + m_cols - 1) / m_cols;
+        return int(m_children.GetCount() + m_cols - 1) / m_cols;
     }
 
 private: