- Added a delete-event-handler for the Firefox master password
prompt dialog. - A minor fix to make CASAManager always write to the default wallet. - Removed console debug print messages from GK and FF code.
This commit is contained in:
parent
4b927ead3e
commit
d7592ef237
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 9 10:53:02 IST 2006 - smanojna@novell.com
|
||||||
|
|
||||||
|
- Added a delete-event-handler for the Firefox master password
|
||||||
|
prompt dialog.
|
||||||
|
- A minor fix to make CASAManager always write to the default wallet.
|
||||||
|
- Removed console debug print messages from GK and FF code.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 8 18:46:13 IST 2006 - lsreevatsa@novell.com
|
Wed Mar 8 18:46:13 IST 2006 - lsreevatsa@novell.com
|
||||||
|
|
||||||
|
@ -668,6 +668,7 @@ namespace Novell.CASA.GUI
|
|||||||
gxmlTemp.Autoconnect (this);
|
gxmlTemp.Autoconnect (this);
|
||||||
dialogFirefoxMP.SetPosition(Gtk.WindowPosition.CenterOnParent);
|
dialogFirefoxMP.SetPosition(Gtk.WindowPosition.CenterOnParent);
|
||||||
dialogFirefoxMP.TransientFor = windowMain;
|
dialogFirefoxMP.TransientFor = windowMain;
|
||||||
|
dialogFirefoxMP.DeleteEvent += new DeleteEventHandler(on_dialogFirefoxMP_deleted);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -729,6 +730,10 @@ namespace Novell.CASA.GUI
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void on_dialogFirefoxMP_deleted(object obj, DeleteEventArgs args)
|
||||||
|
{
|
||||||
|
dialogFirefoxMP.Destroy();
|
||||||
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// ********************************************************************
|
/// ********************************************************************
|
||||||
/// internal void FileMenuActivated(object obj, EventArgs args)
|
/// internal void FileMenuActivated(object obj, EventArgs args)
|
||||||
@ -969,6 +974,7 @@ namespace Novell.CASA.GUI
|
|||||||
gxmlTemp.Autoconnect (this);
|
gxmlTemp.Autoconnect (this);
|
||||||
dialogFirefoxMP.SetPosition(Gtk.WindowPosition.CenterOnParent);
|
dialogFirefoxMP.SetPosition(Gtk.WindowPosition.CenterOnParent);
|
||||||
dialogFirefoxMP.TransientFor = windowMain;
|
dialogFirefoxMP.TransientFor = windowMain;
|
||||||
|
dialogFirefoxMP.DeleteEvent += new DeleteEventHandler(on_dialogFirefoxMP_deleted);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -10700,7 +10700,6 @@ Value:</property>
|
|||||||
<property name="focus_on_map">True</property>
|
<property name="focus_on_map">True</property>
|
||||||
<property name="urgency_hint">False</property>
|
<property name="urgency_hint">False</property>
|
||||||
<property name="has_separator">True</property>
|
<property name="has_separator">True</property>
|
||||||
<signal name="delete_event" handler="OnDialogLoginDeleted" last_modification_time="Tue, 06 Sep 2005 13:51:23 GMT"/>
|
|
||||||
|
|
||||||
<child internal-child="vbox">
|
<child internal-child="vbox">
|
||||||
<widget class="GtkVBox" id="vbox136">
|
<widget class="GtkVBox" id="vbox136">
|
||||||
|
Loading…
Reference in New Issue
Block a user