]> git.saurik.com Git - wxWidgets.git/commitdiff
Bool changed to bool
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 8 Jun 1998 12:41:15 +0000 (12:41 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 8 Jun 1998 12:41:15 +0000 (12:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/log.cpp

index 5f9ac6c643d5f778eb059a8b7b16540481b5de6a..083eca45237f4b02540c6ac61df294450491b90b 100644 (file)
@@ -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);
 }