'[1219035] cleanup: miscellaneous' and minor source cleaning.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-06-13 12:19:33 +00:00
parent 490120b404
commit d0ee33f5c6
31 changed files with 598 additions and 597 deletions

View File

@@ -120,7 +120,7 @@ bool CIDropTarget::DragLeave()
// Release the held object
//
Free();
return TRUE;
return true;
} // end of CIDropTarget::DragLeave
MRESULT CIDropTarget::DragOver ()
@@ -250,7 +250,7 @@ MRESULT CIDropTarget::Drop ()
,m_pDragInfo->yDrop
))
{
wxDragResult eRc = wxDragNone;;
wxDragResult eRc = wxDragNone;
//
// And now it has the data
@@ -260,7 +260,7 @@ MRESULT CIDropTarget::Drop ()
,eRc
);
}
//else: OnDrop() returned FALSE, no need to copy data
//else: OnDrop() returned false, no need to copy data
//
// Release the held object
@@ -292,12 +292,12 @@ bool wxDropTarget::GetData ()
if (vFormat == wxDF_INVALID)
{
return FALSE;
return false;
}
//
// Under OS/2 we already have the data via the attached DRAGITEM's
//
return TRUE;
return true;
} // end of wxDropTarget::GetData
wxDataFormat wxDropTarget::GetSupportedFormat (
@@ -313,7 +313,7 @@ wxDataFormat wxDropTarget::GetSupportedFormat (
ULONG n;
wxString sMechanism;
wxString sFormat;
bool bValid = FALSE;
bool bValid = false;
pFormats = ulFormats == 1 ? &vFormat : new wxDataFormat[ulFormats];
m_dataObject->GetAllFormats( pFormats
@@ -387,7 +387,7 @@ wxDataFormat wxDropTarget::GetSupportedFormat (
pDragItem = ::DrgQueryDragitemPtr(pDataSource, i);
if (::DrgVerifyRMF(pDragItem, (PSZ)sMechanism.c_str(), (PSZ)sFormat.c_str()))
{
bValid = TRUE;
bValid = true;
break;
}
}
@@ -434,7 +434,7 @@ bool wxDropTarget::OnDrop (
, wxCoord WXUNUSED(y)
)
{
return TRUE;
return true;
} // end of wxDropTarget::OnDrop
//-------------------------------------------------------------------------
@@ -525,11 +525,11 @@ bool wxDropSource::GiveFeedback (
case wxDragError:
break;
}
return TRUE;
return true;
}
else
{
return FALSE;
return false;
}
} // end of GuiAdvDnd_CDropSource::GiveFeedback