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:
@@ -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));
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user