plugins/c_ext/CFileEditor.py
changeset 401 8106a853a7c7
parent 213 d8dc1e51c3bf
child 427 7ac746c07ff2
--- a/plugins/c_ext/CFileEditor.py	Thu Sep 24 18:26:11 2009 +0200
+++ b/plugins/c_ext/CFileEditor.py	Thu Sep 24 18:27:45 2009 +0200
@@ -773,9 +773,10 @@
                     if self.Table.GetValueByName(i, "Class") == "output":
                         num += 1
             data_type = self.Table.GetValueByName(row, "Type")
+            var_name = self.Table.GetValueByName(row, "Name")
             base_location = ".".join(map(lambda x:str(x), self.Controler.GetCurrentLocation()))
             location = "%s%s%s.%d"%(dir, self.Controler.GetSizeOfType(data_type), base_location, num)
-            data = wx.TextDataObject(str((location, "location", data_type)))
+            data = wx.TextDataObject(str((location, "location", data_type, var_name, "")))
             dragSource = wx.DropSource(self.VariablesGrid)
             dragSource.SetData(data)
             dragSource.DoDragDrop()