# HG changeset patch
# User laurent
# Date 1326836970 -3600
# Node ID aec7aca89f3eb9259506ab4d4cf8a2a5c58c3e5a
# Parent  037d2beecfb950936b87f5f364cf78e47acf343f
Fixing bug in c_ext plugin variable grid cells not editable

diff -r 037d2beecfb9 -r aec7aca89f3e plugins/c_ext/CFileEditor.py
--- a/plugins/c_ext/CFileEditor.py	Mon Jan 09 18:18:43 2012 +0100
+++ b/plugins/c_ext/CFileEditor.py	Tue Jan 17 22:49:30 2012 +0100
@@ -474,7 +474,7 @@
             for col in range(self.GetNumberCols()):
                 editor = None
                 renderer = None
-                colname = self.GetColLabelValue(col)
+                colname = self.GetColLabelValue(col, False)
                 
                 if colname == "Name":
                     editor = wx.grid.GridCellTextEditor()