When ORing enums, it must be done in the domain of the enum type

This commit is contained in:
jdunn%netscape.com 1999-06-15 23:33:59 +00:00
Родитель bd7e871df0
Коммит 07ab321db5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -334,7 +334,7 @@ NS_METHOD nsWindow::CreateNative(GtkWidget *parentWidget)
gtk_drag_dest_set (mWidget,
GTK_DEST_DEFAULT_ALL,
target_table, n_targets - 1, /* no rootwin */
GDK_ACTION_COPY | GDK_ACTION_MOVE);
GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE));
return NS_OK;
}