diff --git a/CASA.changes b/CASA.changes index 326e702b..719d8368 100644 --- a/CASA.changes +++ b/CASA.changes @@ -1,5 +1,10 @@ ------------------------------------------------------------------- -Tue Nov 15 14:54:19 MST 2005 - jim@novell.com +Wed Nov 16 13:42:19 MST 2005 - jnorman@novell.com + +- Bug 133479. Clear Native information when destroying secrets or refreshing + +------------------------------------------------------------------- +Tue Nov 15 14:54:19 MST 2005 - jnorman@novell.com - Added gtk2-devel dependency to CASA-gui rpm diff --git a/c_gui/GnomeKeyring.cs b/c_gui/GnomeKeyring.cs index 2594494d..b6c4c2ae 100644 --- a/c_gui/GnomeKeyring.cs +++ b/c_gui/GnomeKeyring.cs @@ -120,6 +120,7 @@ public class GnomeKeyring : Store try { tsSecretIDGnomeKeyring.Clear(); + tsNativeInfoGnomeKeyring.Clear(); StoreDataInterface.AggregateStore(Common.STORE_GNOMEKEYRING); StoreDataInterface.ReadStore(Common.STORE_GNOMEKEYRING,ref tsSecretIDGnomeKeyring); } diff --git a/c_gui/KdeWallet.cs b/c_gui/KdeWallet.cs index 8fe637ac..c22445e9 100644 --- a/c_gui/KdeWallet.cs +++ b/c_gui/KdeWallet.cs @@ -118,6 +118,7 @@ public class KdeWallet : Store try { tsSecretIDKdeWallet.Clear(); + tsNativeInfoKdeWallet.Clear(); StoreDataInterface.AggregateStore(Common.STORE_KDEWALLET); StoreDataInterface.ReadStore(Common.STORE_KDEWALLET,ref tsSecretIDKdeWallet); } diff --git a/c_gui/MiCasa.cs b/c_gui/MiCasa.cs index f9e1d378..0f102f5c 100644 --- a/c_gui/MiCasa.cs +++ b/c_gui/MiCasa.cs @@ -104,7 +104,8 @@ public class MiCasa : Store tvSecretIDMiCasa = (Gtk.TreeView)CasaMain.gxml.GetWidget("tvSecretIDMiCasa"); tsSecretIDMiCasa = new TreeStore(typeof(string), typeof(string[]), typeof(string[]), typeof(string), typeof(string[]), typeof(string[])); tvSecretIDMiCasa.AppendColumn("Secret-ID",new CellRendererText(),"text",0); - tvSecretIDMiCasa.Model = tsSecretIDMiCasa; + tvSecretIDMiCasa.Model = tsSecretIDMiCasa; + tsSecretIDMiCasa.SetSortColumnId(0, Gtk.SortType.Ascending); tvSecretIDMiCasa.RowActivated += new RowActivatedHandler(OntvSecretIDMiCasaRowActivated); tvSecretIDMiCasa.ButtonReleaseEvent += new ButtonReleaseEventHandler(OnRightClicked); tvSecretIDMiCasa.CursorChanged += new EventHandler(OnCursorChanged); @@ -140,6 +141,7 @@ public class MiCasa : Store try { tsSecretIDMiCasa.Clear(); + tsNativeInfoMiCasa.Clear(); StoreDataInterface.AggregateStore(Common.STORE_MICASA); StoreDataInterface.ReadStore(Common.STORE_MICASA,ref tsSecretIDMiCasa); }