fixed Printf() format spec warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17085 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-09-08 18:11:02 +00:00
parent e91d2033ee
commit 0c61716c79
3 changed files with 10 additions and 9 deletions

View File

@@ -411,7 +411,7 @@ void ComboboxWidgetsPage::OnButtonClear(wxCommandEvent& event)
void ComboboxWidgetsPage::OnButtonAdd(wxCommandEvent& event) void ComboboxWidgetsPage::OnButtonAdd(wxCommandEvent& event)
{ {
static size_t s_item = 0; static unsigned int s_item = 0;
wxString s = m_textAdd->GetValue(); wxString s = m_textAdd->GetValue();
if ( !m_textAdd->IsModified() ) if ( !m_textAdd->IsModified() )
@@ -426,7 +426,7 @@ void ComboboxWidgetsPage::OnButtonAdd(wxCommandEvent& event)
void ComboboxWidgetsPage::OnButtonAddMany(wxCommandEvent& WXUNUSED(event)) void ComboboxWidgetsPage::OnButtonAddMany(wxCommandEvent& WXUNUSED(event))
{ {
// "many" means 1000 here // "many" means 1000 here
for ( size_t n = 0; n < 1000; n++ ) for ( unsigned int n = 0; n < 1000; n++ )
{ {
m_combobox->Append(wxString::Format(_T("item #%u"), n)); m_combobox->Append(wxString::Format(_T("item #%u"), n));
} }

View File

@@ -428,7 +428,7 @@ void ListboxWidgetsPage::OnButtonClear(wxCommandEvent& event)
void ListboxWidgetsPage::OnButtonAdd(wxCommandEvent& event) void ListboxWidgetsPage::OnButtonAdd(wxCommandEvent& event)
{ {
static size_t s_item = 0; static unsigned int s_item = 0;
wxString s = m_textAdd->GetValue(); wxString s = m_textAdd->GetValue();
if ( !m_textAdd->IsModified() ) if ( !m_textAdd->IsModified() )
@@ -443,7 +443,7 @@ void ListboxWidgetsPage::OnButtonAdd(wxCommandEvent& event)
void ListboxWidgetsPage::OnButtonAddMany(wxCommandEvent& WXUNUSED(event)) void ListboxWidgetsPage::OnButtonAddMany(wxCommandEvent& WXUNUSED(event))
{ {
// "many" means 1000 here // "many" means 1000 here
for ( size_t n = 0; n < 1000; n++ ) for ( unsigned int n = 0; n < 1000; n++ )
{ {
m_lbox->Append(wxString::Format(_T("item #%u"), n)); m_lbox->Append(wxString::Format(_T("item #%u"), n));
} }

View File

@@ -65,8 +65,8 @@ enum
}; };
// default values for the number of radiobox items // default values for the number of radiobox items
static const size_t DEFAULT_NUM_ENTRIES = 12; static const unsigned int DEFAULT_NUM_ENTRIES = 12;
static const size_t DEFAULT_MAJOR_DIM = 3; static const unsigned int DEFAULT_MAJOR_DIM = 3;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// RadioWidgetsPage // RadioWidgetsPage
@@ -272,8 +272,8 @@ RadioWidgetsPage::~RadioWidgetsPage()
void RadioWidgetsPage::Reset() void RadioWidgetsPage::Reset()
{ {
m_textMajorDim->SetValue(wxString::Format(_T("%d"), DEFAULT_MAJOR_DIM)); m_textMajorDim->SetValue(wxString::Format(_T("%u"), DEFAULT_MAJOR_DIM));
m_textNumBtns->SetValue(wxString::Format(_T("%d"), DEFAULT_NUM_ENTRIES)); m_textNumBtns->SetValue(wxString::Format(_T("%u"), DEFAULT_NUM_ENTRIES));
m_textLabel->SetValue(_T("I'm a radiobox")); m_textLabel->SetValue(_T("I'm a radiobox"));
m_textLabelBtns->SetValue(_T("item")); m_textLabelBtns->SetValue(_T("item"));
@@ -320,7 +320,8 @@ void RadioWidgetsPage::CreateRadio()
wxString labelBtn = m_textLabelBtns->GetValue(); wxString labelBtn = m_textLabelBtns->GetValue();
for ( size_t n = 0; n < count; n++ ) for ( size_t n = 0; n < count; n++ )
{ {
items[n] = wxString::Format(_T("%s %u"), labelBtn.c_str(), n + 1); items[n] = wxString::Format(_T("%s %lu"),
labelBtn.c_str(), (unsigned long)n + 1);
} }
int flags = m_chkVert->GetValue() ? wxRA_VERTICAL int flags = m_chkVert->GetValue() ? wxRA_VERTICAL