diff --git a/src/common/log.cpp b/src/common/log.cpp index 5f9ac6c643..083eca4523 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -572,9 +572,9 @@ void wxLogFrame::OnSave(wxCommandEvent& event) // open file // --------- wxFile file; - Bool bOk; + bool bOk; if ( wxFile::Exists(szFileName) ) { - Bool bAppend; + bool bAppend; wxString strMsg; strMsg.Printf(_("Append log to file '%s' " "(choosing [No] will overwrite it)?"), szFileName); @@ -636,7 +636,7 @@ wxLogWindow::wxLogWindow(const wxTString& strTitle) m_pLogFrame = new wxLogFrame(strTitle); } -void wxLogWindow::Show(Bool bShow) +void wxLogWindow::Show(bool bShow) { m_pLogFrame->Show(bShow); }