X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/1e3b9ee07ec8ed4dd72263248a08772a4e793e81..afbf89745cac12021bfe71bc6739dbd9459cacc0:/demo/src/Vistas/RevisarAutorizacionManual.cs?ds=sidebyside diff --git a/demo/src/Vistas/RevisarAutorizacionManual.cs b/demo/src/Vistas/RevisarAutorizacionManual.cs index 7aab433..f6d0ff4 100644 --- a/demo/src/Vistas/RevisarAutorizacionManual.cs +++ b/demo/src/Vistas/RevisarAutorizacionManual.cs @@ -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 (); }