~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to vmware-user/dnd.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-07-30 12:56:49 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730125649-97sfj5li8axiseoo
Tags: 2009.07.22-179896-2
* Temporarily building without dumbnet, the recently uploaded
  new dumbnet upstream version broke down (Closes: #539006).
* Using more common name to store local debian additions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2591
2591
   gtk_signal_disconnect_by_func(GTK_OBJECT(ghWnd),
2592
2592
                                 GTK_SIGNAL_FUNC(DnDGtkDragDropCB),
2593
2593
                                 ghWnd);
 
2594
 
 
2595
   RpcIn_UnregisterCallback(gRpcIn, "dnd.data.set");
 
2596
   RpcIn_UnregisterCallback(gRpcIn, "dnd.enter");
 
2597
   RpcIn_UnregisterCallback(gRpcIn, "dnd.move");
 
2598
   RpcIn_UnregisterCallback(gRpcIn, "dnd.drop");
 
2599
   RpcIn_UnregisterCallback(gRpcIn, "dnd.data.finish");
 
2600
 
 
2601
   /* Guest->Host RPC callbacks */
 
2602
   RpcIn_UnregisterCallback(gRpcIn, "dnd.ungrab");
 
2603
   RpcIn_UnregisterCallback(gRpcIn, "dnd.data.get.file");
 
2604
   RpcIn_UnregisterCallback(gRpcIn, "dnd.finish");
2594
2605
}
2595
2606
 
2596
2607