git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59592
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
WX_CPPUNIT_ALLOW_EQUALS_TO_INT(long)
WX_CPPUNIT_ALLOW_EQUALS_TO_INT(short)
WX_CPPUNIT_ALLOW_EQUALS_TO_INT(long)
WX_CPPUNIT_ALLOW_EQUALS_TO_INT(short)
-WX_CPPUNIT_ALLOW_EQUALS_TO_INT(size_t)
+WX_CPPUNIT_ALLOW_EQUALS_TO_INT(unsigned)
+WX_CPPUNIT_ALLOW_EQUALS_TO_INT(unsigned long)
// Use this macro to compare a wxArrayString with the pipe-separated elements
// of the given string
// Use this macro to compare a wxArrayString with the pipe-separated elements
// of the given string
void HeaderCtrlTestCase::AddDelete()
{
void HeaderCtrlTestCase::AddDelete()
{
- CPPUNIT_ASSERT_EQUAL( 0, (size_t)m_header->GetColumnCount() );
+ CPPUNIT_ASSERT_EQUAL( 0, m_header->GetColumnCount() );
m_header->AppendColumn(wxHeaderColumnSimple("Column 1"));
m_header->AppendColumn(wxHeaderColumnSimple("Column 1"));
- CPPUNIT_ASSERT_EQUAL( 1, (size_t)m_header->GetColumnCount() );
+ CPPUNIT_ASSERT_EQUAL( 1, m_header->GetColumnCount() );
m_header->AppendColumn(wxHeaderColumnSimple("Column 2"));
m_header->AppendColumn(wxHeaderColumnSimple("Column 2"));
- CPPUNIT_ASSERT_EQUAL( 2, (size_t)m_header->GetColumnCount() );
+ CPPUNIT_ASSERT_EQUAL( 2, m_header->GetColumnCount() );
m_header->InsertColumn(wxHeaderColumnSimple("Column 0"), 0);
m_header->InsertColumn(wxHeaderColumnSimple("Column 0"), 0);
- CPPUNIT_ASSERT_EQUAL( 3, (size_t)m_header->GetColumnCount() );
+ CPPUNIT_ASSERT_EQUAL( 3, m_header->GetColumnCount() );
m_header->DeleteColumn(2);
m_header->DeleteColumn(2);
- CPPUNIT_ASSERT_EQUAL( 2, (size_t)m_header->GetColumnCount() );
+ CPPUNIT_ASSERT_EQUAL( 2, m_header->GetColumnCount() );
}
void HeaderCtrlTestCase::BestSize()
}
void HeaderCtrlTestCase::BestSize()