- Bug 136527. Add handlers on KDEStore and GNOME Store code

This commit is contained in:
Jim Norman 2005-12-02 22:38:46 +00:00
parent 604aa1f1e0
commit d2a304e268
3 changed files with 28 additions and 4 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Dec 2 16:35:38 MST 2005 - jnorman@novell.com
- Bug 136527. Add handlers on KDEStore and GNOME Store code
-------------------------------------------------------------------
Fri Dec 2 15:11:49 MST 2005 - cmashayekhi@novell.com

View File

@ -472,8 +472,19 @@ public class GnomeKeyring : Store
{
}
public void on_buttonhelpEditSecret_clicked(object obj, EventArgs args)
{
Common.ShowHelpUrl("EditingSecrets.html");
}
public void on_helpbuttonAuthentication_clicked(object obj, EventArgs args)
{
Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm");
}
}
}
///##################################################################
/// END OF FILE
///##################################################################
///##################################################################

View File

@ -238,7 +238,6 @@ public class KdeWallet : Store
tsKeyValue = new TreeStore(typeof(string),typeof(string), typeof(string), typeof(bool));
tvKeyValue.AppendColumn("Key",new CellRendererText(),"text",0);
tvKeyValue.AppendColumn("Value",cellEditable,"text",2);
entrySecretID.Text = selected;
for( int i=0; i< keys.Length; i++ )
{
@ -473,9 +472,18 @@ public class KdeWallet : Store
public void OnDeleteActivated(object obj, EventArgs args)
{
}
}
public void on_buttonhelpEditSecret_clicked(object obj, EventArgs args)
{
Common.ShowHelpUrl("EditingSecrets.html");
}
public void on_helpbuttonAuthentication_clicked(object obj, EventArgs args)
{
Common.ShowHelpUrl("CASAMasterPasswordAuthentication.htm");
}
}
}
///##################################################################
/// END OF FILE
///##################################################################
///##################################################################