Source cleaning: whitespaces, tabs, TRUE/true, FALSE/false, -1/wxID_ANY/wxDefaultCoord, !!/!IsEmpty().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-09-10 12:56:07 +00:00
parent 761fbb87fc
commit 68379eaf0a
44 changed files with 883 additions and 883 deletions

View File

@@ -79,7 +79,7 @@ bool wxDocMDIParentFrame::ProcessEvent(wxEvent& event)
if (!m_docManager || !m_docManager->ProcessEvent(event))
return wxEvtHandler::ProcessEvent(event);
else
return TRUE;
return true;
}
void wxDocMDIParentFrame::OnCloseWindow(wxCloseEvent& event)
@@ -131,15 +131,15 @@ bool wxDocMDIChildFrame::Create(wxDocument *doc, wxView *view, wxMDIParentFrame
{
if (view)
view->SetFrame(this);
return TRUE;
return true;
}
return FALSE;
return false;
}
wxDocMDIChildFrame::~wxDocMDIChildFrame(void)
{
m_childView = (wxView *) NULL;
m_childView = (wxView *) NULL;
}
// Extend event processing to search the view's event table
@@ -149,21 +149,21 @@ bool wxDocMDIChildFrame::ProcessEvent(wxEvent& event)
// Break recursion loops
if (ActiveEvent == &event)
return FALSE;
return false;
ActiveEvent = &event;
bool ret;
if ( !m_childView || ! m_childView->ProcessEvent(event) )
if ( !m_childView || ! m_childView->ProcessEvent(event) )
{
// Only hand up to the parent if it's a menu command
if (!event.IsKindOf(CLASSINFO(wxCommandEvent)) || !GetParent() || !GetParent()->ProcessEvent(event))
ret = wxEvtHandler::ProcessEvent(event);
else
ret = TRUE;
ret = true;
}
else
ret = TRUE;
else
ret = true;
ActiveEvent = NULL;
return ret;
@@ -180,16 +180,16 @@ void wxDocMDIChildFrame::OnActivate(wxActivateEvent& event)
void wxDocMDIChildFrame::OnCloseWindow(wxCloseEvent& event)
{
// Close view but don't delete the frame while doing so!
// ...since it will be deleted by wxWidgets if we return TRUE.
// ...since it will be deleted by wxWidgets if we return true.
if (m_childView)
{
bool ans = event.CanVeto()
? m_childView->Close(FALSE) // FALSE means don't delete associated window
: TRUE; // Must delete.
? m_childView->Close(false) // false means don't delete associated window
: true; // Must delete.
if (ans)
{
m_childView->Activate(FALSE);
m_childView->Activate(false);
delete m_childView;
m_childView = (wxView *) NULL;
m_childDocument = (wxDocument *) NULL;