From 23ecb28bcbd2eb7e3fb4fdedbe0cd0c6e3d4d55e Mon Sep 17 00:00:00 2001 From: "rods%netscape.com" Date: Thu, 1 Apr 1999 14:40:36 +0000 Subject: [PATCH] removed include of Transferable git-svn-id: svn://10.0.0.236/trunk@25854 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/windows/nsDragService.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mozilla/widget/src/windows/nsDragService.cpp b/mozilla/widget/src/windows/nsDragService.cpp index b26e9b3c30c..36a4897bd10 100644 --- a/mozilla/widget/src/windows/nsDragService.cpp +++ b/mozilla/widget/src/windows/nsDragService.cpp @@ -21,7 +21,7 @@ #include "nsITransferable.h" #include "nsDragSource.h" #include "nsDataObj.h" -#include "nsTransferable.h" +//#include "nsTransferable.h" #include "OLEIDL.h" #include "OLE2.h" @@ -85,7 +85,7 @@ NS_IMETHODIMP nsDragService::StartDragSession (nsIDragSource * aDragSrc, PRBool aDoFlyback) { - NS_IF_RELEASE(mDragSource); + /* NS_IF_RELEASE(mDragSource); mDragSource = aDragSrc; NS_ADDREF(mDragSource); @@ -98,6 +98,7 @@ NS_IMETHODIMP nsDragService::StartDragSession (nsIDragSource * aDragSrc, res = ::DoDragDrop((IDataObject*)dataObj, (IDropSource *)((nsDragSource *)mDragSource)->GetNativeDragSrc(), DROPEFFECT_COPY | DROPEFFECT_MOVE | DROPEFFECT_SCROLL, &dropRes); + */ return NS_OK; }