diff -r 2c786431fe72 -r 8106a853a7c7 plugins/c_ext/CFileEditor.py --- 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()