From e51c494324b5e3ee97a559fcfe3a88cd42730b30 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 8 Jun 1998 12:41:15 +0000 Subject: [PATCH] Bool changed to bool git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.45.2