Warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30878 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-12-06 17:35:00 +00:00
parent c8b75e9498
commit abc2a4ccec
2 changed files with 22 additions and 22 deletions

View File

@@ -278,13 +278,13 @@ void MyFrame::OnPrintAbout(wxCommandEvent& WXUNUSED(event))
_T("About wxWidgets printing demo"), wxOK|wxCENTRE); _T("About wxWidgets printing demo"), wxOK|wxCENTRE);
} }
void MyFrame::OnAngleUp(wxCommandEvent& event) void MyFrame::OnAngleUp(wxCommandEvent& WXUNUSED(event))
{ {
m_angle += 5; m_angle += 5;
canvas->Refresh(); canvas->Refresh();
} }
void MyFrame::OnAngleDown(wxCommandEvent& event) void MyFrame::OnAngleDown(wxCommandEvent& WXUNUSED(event))
{ {
m_angle -= 5; m_angle -= 5;
canvas->Refresh(); canvas->Refresh();
@@ -310,7 +310,7 @@ void MyFrame::Draw(wxDC& dc)
dc.SetPen(*wxRED_PEN); dc.SetPen(*wxRED_PEN);
dc.DrawText( wxT("Test message: this is in 10 point text"), 10, 180); dc.DrawText( wxT("Test message: this is in 10 point text"), 10, 180);
#if wxUSE_UNICODE #if wxUSE_UNICODE
char *test = "Hebrew שלום -- Japanese (日本語)"; char *test = "Hebrew שלום -- Japanese (日本語)";
wxString tmp = wxConvUTF8.cMB2WC( test ); wxString tmp = wxConvUTF8.cMB2WC( test );
@@ -333,7 +333,7 @@ void MyFrame::Draw(wxDC& dc)
wxIcon my_icon = wxICON(mondrian) ; wxIcon my_icon = wxICON(mondrian) ;
dc.DrawIcon( my_icon, 100, 100); dc.DrawIcon( my_icon, 100, 100);
if (m_bitmap.Ok()) if (m_bitmap.Ok())
dc.DrawBitmap( m_bitmap, 10, 10 ); dc.DrawBitmap( m_bitmap, 10, 10 );
} }

View File

@@ -140,7 +140,7 @@ int wxCALLBACK wxFileDataTimeCompare( long data1, long data2, long data)
#endif #endif
#if defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__) #if defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__)
#define IsTopMostDir(dir) (dir.IsEmpty()) #define IsTopMostDir(dir) (dir.empty())
#endif #endif
#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__) #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
@@ -507,20 +507,20 @@ void wxFileCtrl::UpdateFiles()
#if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__OS2__) #if defined(__WINDOWS__) || defined(__DOS__) || defined(__WXMAC__) || defined(__OS2__)
if ( IsTopMostDir(m_dirName) ) if ( IsTopMostDir(m_dirName) )
{ {
wxArrayString names, paths; wxArrayString names, paths;
wxArrayInt icons; wxArrayInt icons;
size_t n, count = wxGetAvailableDrives(paths, names, icons); size_t n, count = wxGetAvailableDrives(paths, names, icons);
for (n=0; n<count; n++) for (n=0; n<count; n++)
{ {
wxFileData *fd = new wxFileData(paths[n], names[n], wxFileData::is_drive, icons[n]); wxFileData *fd = new wxFileData(paths[n], names[n], wxFileData::is_drive, icons[n]);
if (Add(fd, item) != -1) if (Add(fd, item) != -1)
item.m_itemId++; item.m_itemId++;
else else
delete fd; delete fd;
}
} }
}
else else
#endif // defined(__DOS__) || defined(__WINDOWS__) #endif // defined(__DOS__) || defined(__WINDOWS__)
{ {
@@ -529,7 +529,7 @@ void wxFileCtrl::UpdateFiles()
{ {
wxString p(wxPathOnly(m_dirName)); wxString p(wxPathOnly(m_dirName));
#if defined(__UNIX__) && !defined(__OS2__) #if defined(__UNIX__) && !defined(__OS2__)
if (p.IsEmpty()) p = wxT("/"); if (p.empty()) p = wxT("/");
#endif // __UNIX__ #endif // __UNIX__
wxFileData *fd = new wxFileData(p, wxT(".."), wxFileData::is_dir, wxFileIconsTable::folder); wxFileData *fd = new wxFileData(p, wxT(".."), wxFileData::is_dir, wxFileIconsTable::folder);
if (Add(fd, item) != -1) if (Add(fd, item) != -1)
@@ -660,18 +660,18 @@ void wxFileCtrl::GoToParentDir()
wxString fname( wxFileNameFromPath(m_dirName) ); wxString fname( wxFileNameFromPath(m_dirName) );
m_dirName = wxPathOnly( m_dirName ); m_dirName = wxPathOnly( m_dirName );
#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__) #if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
if (!m_dirName.IsEmpty()) if (!m_dirName.empty())
{ {
if (m_dirName.Last() == wxT('.')) if (m_dirName.Last() == wxT('.'))
m_dirName = wxEmptyString; m_dirName = wxEmptyString;
} }
#elif defined(__UNIX__) #elif defined(__UNIX__)
if (m_dirName.IsEmpty()) if (m_dirName.empty())
m_dirName = wxT("/"); m_dirName = wxT("/");
#endif #endif
UpdateFiles(); UpdateFiles();
long id = FindItem( 0, fname ); long id = FindItem( 0, fname );
if (id != -1) if (id != wxNOT_FOUND)
{ {
SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED ); SetItemState( id, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
EnsureVisible( id ); EnsureVisible( id );
@@ -735,7 +735,7 @@ void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
wxFileData *fd = (wxFileData*)event.m_item.m_data; wxFileData *fd = (wxFileData*)event.m_item.m_data;
wxASSERT( fd ); wxASSERT( fd );
if ((event.GetLabel().IsEmpty()) || if ((event.GetLabel().empty()) ||
(event.GetLabel() == _(".")) || (event.GetLabel() == _(".")) ||
(event.GetLabel() == _("..")) || (event.GetLabel() == _("..")) ||
(event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND)) (event.GetLabel().First( wxFILE_SEP_PATH ) != wxNOT_FOUND))
@@ -881,18 +881,18 @@ wxGenericFileDialog::wxGenericFileDialog(wxWindow *parent,
:wxFileDialogBase(parent, message, defaultDir, defaultFile, wildCard, style, pos) :wxFileDialogBase(parent, message, defaultDir, defaultFile, wildCard, style, pos)
{ {
m_bypassGenericImpl = bypassGenericImpl; m_bypassGenericImpl = bypassGenericImpl;
if (!m_bypassGenericImpl) if (!m_bypassGenericImpl)
Create( parent, message, defaultDir, defaultFile, wildCard, style, pos ); Create( parent, message, defaultDir, defaultFile, wildCard, style, pos );
} }
bool wxGenericFileDialog::Create( wxWindow *parent, bool wxGenericFileDialog::Create( wxWindow *parent,
const wxString& message, const wxString& message,
const wxString& defaultDir, const wxString& WXUNUSED(defaultDir),
const wxString& defaultFile, const wxString& defaultFile,
const wxString& wildCard, const wxString& wildCard,
long style, long WXUNUSED(style),
const wxPoint& pos ) const wxPoint& pos )
{ {
if (!wxDialog::Create( parent, wxID_ANY, message, pos, wxDefaultSize, if (!wxDialog::Create( parent, wxID_ANY, message, pos, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER )) wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ))
@@ -1049,7 +1049,7 @@ bool wxGenericFileDialog::Create( wxWindow *parent,
Centre( wxBOTH ); Centre( wxBOTH );
m_text->SetFocus(); m_text->SetFocus();
return true; return true;
} }
@@ -1200,7 +1200,7 @@ void wxGenericFileDialog::HandleAction( const wxString &fn )
{ {
wxString filename( fn ); wxString filename( fn );
wxString dir = m_list->GetDir(); wxString dir = m_list->GetDir();
if (filename.IsEmpty()) return; if (filename.empty()) return;
if (filename == wxT(".")) return; if (filename == wxT(".")) return;
// "some/place/" means they want to chdir not try to load "place" // "some/place/" means they want to chdir not try to load "place"