Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/11 14:53:01 (13 years ago)
Author:
swagner
Message:

Implemented review comments of mkommend (#1112)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs

    r5744 r5837  
    281281      if ((Control.MouseButtons & MouseButtons.Left) == MouseButtons.Left && startDragAndDrop) {
    282282        DataObject data = new DataObject();
    283         data.SetData("HeuristicLab", Content);
     283        data.SetData(HeuristicLab.Common.Constants.DragDropDataFormat, Content);
    284284        DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
    285285      } else
Note: See TracChangeset for help on using the changeset viewer.