add gala namespace to DragDropAction class

This commit is contained in:
Tom Beckmann 2013-06-27 14:12:51 +02:00
parent 05ed8e811f
commit 3703a701aa

View File

@ -15,14 +15,16 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
public enum DragDropActionType
namespace Gala
{
public enum DragDropActionType
{
SOURCE = 0,
DESTINATION
}
}
public class DragDropAction : Clutter.Action
{
public class DragDropAction : Clutter.Action
{
public DragDropActionType drag_type { get; private set; }
public string drag_id { get; set; }
public Clutter.Actor handle { get; private set; }
@ -216,5 +218,5 @@ public class DragDropAction : Clutter.Action
actor.get_stage ().captured_event.disconnect (follow_move);
finished (hovered);
}
}
}