* Slight renamings, no functional changes.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42442 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -3788,19 +3788,19 @@ BContainerWindow::SaveWindowState(BMessage &message) const
|
||||
|
||||
|
||||
status_t
|
||||
BContainerWindow::DragStart(const BMessage *incoming)
|
||||
BContainerWindow::DragStart(const BMessage* dragMessage)
|
||||
{
|
||||
if (incoming == NULL)
|
||||
if (dragMessage == NULL)
|
||||
return B_ERROR;
|
||||
|
||||
// if already dragging, or
|
||||
// if all the refs match
|
||||
if (Dragging() && SpringLoadedFolderCompareMessages(incoming, fDragMessage))
|
||||
if (Dragging() && SpringLoadedFolderCompareMessages(dragMessage, fDragMessage))
|
||||
return B_OK;
|
||||
|
||||
// cache the current drag message
|
||||
// build a list of the mimetypes in the message
|
||||
SpringLoadedFolderCacheDragData(incoming, &fDragMessage, &fCachedTypesList);
|
||||
SpringLoadedFolderCacheDragData(dragMessage, &fDragMessage, &fCachedTypesList);
|
||||
|
||||
fWaitingForRefs = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user