* 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:
Alexandre Deckner
2011-07-17 10:31:50 +00:00
parent 29769e0452
commit df1c9e984e
2 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -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;