Fixing drag test case, this is #if 0 by default.

git-svn-id: svn://10.0.0.236/trunk@36142 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
1999-06-21 23:19:54 +00:00
parent 3a8e0d8903
commit b34de1697e
2 changed files with 6 additions and 6 deletions

View File

@@ -51,7 +51,7 @@
#include "nsCOMPtr.h"
#include "nsStyleChangeList.h"
#define NORMAL_DRAG_HANDLING 1 // remove this to try out new D&D stuff.
#define NORMAL_DRAG_HANDLING 1
#if !NORMAL_DRAG_HANDLING
#include "nsWidgetsCID.h"
#include "nsIDragService.h"
@@ -830,12 +830,12 @@ nsFrame::HandleEvent(nsIPresContext& aPresContext,
trans->AddDataFlavor(&textPlainFlavor);
nsString dragText = "Drag Text";
PRUint32 len = 9;
trans->SetTransferData(flavor, dragText.ToNewCString(), len); // transferable consumes the data
trans->SetTransferData(&textPlainFlavor, dragText.ToNewCString(), len); // transferable consumes the data
trans2->AddDataFlavor(&textPlainFlavor);
nsString dragText2 = "More Drag Text";
len = 14;
trans2->SetTransferData(flavor2, dragText2.ToNewCString(), len); // transferable consumes the data
trans2->SetTransferData(&textPlainFlavor, dragText2.ToNewCString(), len); // transferable consumes the data
nsCOMPtr<nsISupportsArray> items;
NS_NewISupportsArray(getter_AddRefs(items));

View File

@@ -51,7 +51,7 @@
#include "nsCOMPtr.h"
#include "nsStyleChangeList.h"
#define NORMAL_DRAG_HANDLING 1 // remove this to try out new D&D stuff.
#define NORMAL_DRAG_HANDLING 1
#if !NORMAL_DRAG_HANDLING
#include "nsWidgetsCID.h"
#include "nsIDragService.h"
@@ -830,12 +830,12 @@ nsFrame::HandleEvent(nsIPresContext& aPresContext,
trans->AddDataFlavor(&textPlainFlavor);
nsString dragText = "Drag Text";
PRUint32 len = 9;
trans->SetTransferData(flavor, dragText.ToNewCString(), len); // transferable consumes the data
trans->SetTransferData(&textPlainFlavor, dragText.ToNewCString(), len); // transferable consumes the data
trans2->AddDataFlavor(&textPlainFlavor);
nsString dragText2 = "More Drag Text";
len = 14;
trans2->SetTransferData(flavor2, dragText2.ToNewCString(), len); // transferable consumes the data
trans2->SetTransferData(&textPlainFlavor, dragText2.ToNewCString(), len); // transferable consumes the data
nsCOMPtr<nsISupportsArray> items;
NS_NewISupportsArray(getter_AddRefs(items));