diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-12-08 08:00:15 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-12-08 08:00:15 +0800 |
commit | 4a74b1ff15ca5cbc175c8fb98839960f1af494fb (patch) | |
tree | ed80ade2d481f5a265c0d9a475be689ace09c8df /executive-summary/idl | |
parent | adf19f49fbdf0e0e69a6ed80fe0cddaf4f3978d1 (diff) | |
download | gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar.gz gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar.bz2 gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar.lz gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar.xz gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.tar.zst gsoc2013-evolution-4a74b1ff15ca5cbc175c8fb98839960f1af494fb.zip |
New and improved display,
Bug fixes
memory leaks removed
Preferences
and probably more that I can't remember.
svn path=/trunk/; revision=6858
Diffstat (limited to 'executive-summary/idl')
-rw-r--r-- | executive-summary/idl/HtmlView.idl | 2 | ||||
-rw-r--r-- | executive-summary/idl/SummaryComponent.idl | 20 |
2 files changed, 7 insertions, 15 deletions
diff --git a/executive-summary/idl/HtmlView.idl b/executive-summary/idl/HtmlView.idl index 0116fbf9b8..547c3148a5 100644 --- a/executive-summary/idl/HtmlView.idl +++ b/executive-summary/idl/HtmlView.idl @@ -14,7 +14,7 @@ module GNOME { module Evolution { module Summary { - interface HTMLView : Bonobo::Unknown{ + interface HTMLView : Bonobo::Unknown { string getHtml (); }; }; diff --git a/executive-summary/idl/SummaryComponent.idl b/executive-summary/idl/SummaryComponent.idl index 1129721a02..fefc8e518d 100644 --- a/executive-summary/idl/SummaryComponent.idl +++ b/executive-summary/idl/SummaryComponent.idl @@ -19,24 +19,16 @@ module Summary { interface ViewFrame; interface Component: Bonobo::Unknown { + }; + interface ComponentFactory: Bonobo::Unknown { /** - * setOwner: - * @summary: A Summary object. + * createView: * - * Sets the owner of the component. - */ - void setOwner (in ViewFrame owner); - - /** - * unsetOwner: + * Creates a new Component object. * - * Unsets the owner of the component. - */ - void unsetOwner (); - }; - - interface ComponentFactory: Bonobo::Unknown { + * Returns: A Component object. + **/ Component createView (); }; }; |