diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-04-08 04:48:40 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-08 04:48:40 +0800 |
commit | 5ffbd120533029408a898318f26ebee9d95b8433 (patch) | |
tree | f12e74bcc255d36d4bbebf12219ae86d6aba1838 /shell/Evolution-ConfigControl.idl | |
parent | 70bc05259b1f4cde235b39e55f095dc9cfdbcb12 (diff) | |
download | gsoc2013-evolution-5ffbd120533029408a898318f26ebee9d95b8433.tar.gz gsoc2013-evolution-5ffbd120533029408a898318f26ebee9d95b8433.tar.zst gsoc2013-evolution-5ffbd120533029408a898318f26ebee9d95b8433.zip |
Removed the "apply" method.
2004-04-07 Jeffrey Stedfast <fejj@ximian.com>
* Evolution-ConfigControl.idl: Removed the "apply" method.
* e-corba-config-page.c: We can probably remove this entire file,
it seems pretty useless. But until I know for sure, I guess I
won't bother.
(impl_apply): Removed, no longer a valid interface.
(listener_event_callback): Huh? calls a non-existant function if
the event name was "changed". Uhm, yea...ok. Removed.
(setup_listener): Removed. Did nothing but to setup the above
listener.
* evolution-config-control.c: No longer needs to keep 'changed'
state.
(evolution_config_control_changed): Removed.
(impl_apply): Removed. No lonegr a valid interface.
svn path=/trunk/; revision=25361
Diffstat (limited to 'shell/Evolution-ConfigControl.idl')
-rw-r--r-- | shell/Evolution-ConfigControl.idl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/shell/Evolution-ConfigControl.idl b/shell/Evolution-ConfigControl.idl index 059ed6b286..dfe99dd644 100644 --- a/shell/Evolution-ConfigControl.idl +++ b/shell/Evolution-ConfigControl.idl @@ -11,24 +11,11 @@ module GNOME { module Evolution { interface ConfigControl : Bonobo::Unknown { - /* Apply the current settings. */ - void apply (); - /* The actual Control. */ readonly attribute Bonobo::Control control; /* Get the event source for this control. */ readonly attribute Bonobo::EventSource eventSource; - - /* These are the events that get emitted when the properties of - the dialog change: - - - "changed" - - Emitted when the data entered changes, and thus - doesn't match the applied settings anymore. The user must - assume this to be true until ::apply gets invoked. - */ }; }; /* module Evolution */ }; /* module GNOME */ |