]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/RevisarAutorizacionManual.cs
(no commit message)
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / RevisarAutorizacionManual.cs
index 7aab43343f915fc4b6b39112ce6de0e4d9b6de68..f6d0ff4881958508c760f4434ff5cd97a6c1618b 100644 (file)
@@ -22,17 +22,15 @@ public class VRevisarAutorizacionManual
                xml = new Glade.XML (null, "actualizar_autorizacion_manual.glade", "autorizaciones_pendientes", null);
                xml.Autoconnect (this);
 
-               /* Creo los modelos para los TreeView y el ComboBox 
-                                                   Tipo Doc        NroDoc         Apellido       Nombre     */
-               lista.Model = new ListStore (typeof(string), typeof(int), typeof (string), typeof (string));
+               lista.Model = new ListStore (typeof(int), typeof(string), typeof (string), typeof (string), typeof(string));
 
                /* Columnas */
                lista.HeadersVisible = true;
                lista.AppendColumn ("Codigo", new CellRendererText (), "text", 0);
                lista.AppendColumn ("Fecha Solicitud", new CellRendererText (), "text", 1);
                lista.AppendColumn ("Prestacion", new CellRendererText (), "text", 2);
-               lista.AppendColumn ("Afiliado", new CellRendererText (), "text", 2);
-               lista.AppendColumn ("Prestador", new CellRendererText (), "text", 3);
+               lista.AppendColumn ("Afiliado", new CellRendererText (), "text", 3);
+               lista.AppendColumn ("Prestador", new CellRendererText (), "text", 4);
        
                CargarAutorizaciones ();
        }