зеркало из https://github.com/mozilla/gecko-dev.git
fixing tinderbox bustage on at least irix & hpux
This commit is contained in:
Родитель
1c8356a6cd
Коммит
5562637ad3
|
@ -153,11 +153,11 @@ nsDragService::InvokeDragSession (nsIDOMNode *aDOMNode,
|
|||
GdkDragAction action = GDK_ACTION_DEFAULT;
|
||||
|
||||
if (aActionType & DRAGDROP_ACTION_COPY)
|
||||
(int)action |= GDK_ACTION_COPY;
|
||||
action = (GdkDragAction)(action | GDK_ACTION_COPY);
|
||||
if (aActionType & DRAGDROP_ACTION_MOVE)
|
||||
(int)action |= GDK_ACTION_MOVE;
|
||||
action = (GdkDragAction)(action | GDK_ACTION_MOVE);
|
||||
if (aActionType & DRAGDROP_ACTION_LINK)
|
||||
(int)action |= GDK_ACTION_LINK;
|
||||
action = (GdkDragAction)(action | GDK_ACTION_LINK);
|
||||
|
||||
// start our drag.
|
||||
GdkDragContext *context = gtk_drag_begin(mHiddenWidget,
|
||||
|
|
Загрузка…
Ссылка в новой задаче