diff options
author | Michael Meeks <michael@ximian.com> | 2002-04-18 18:39:01 +0000 |
---|---|---|
committer | Michael Meeks <michael@src.gnome.org> | 2002-04-18 18:39:01 +0000 |
commit | e72152dd8e25e3d6309cbf2928e240fc99e1dd72 (patch) | |
tree | aa041c91718519fd813ab3edd95d6cc2315fd357 /components/notes | |
parent | 2af5520c56649f581d316824cdbaaafe80d3d2d1 (diff) | |
download | nautilus-e72152dd8e25e3d6309cbf2928e240fc99e1dd72.tar.gz |
replace all the OAFIIDs with more sensibly named ones, that follow the
2002-04-18 Michael Meeks <michael@ximian.com>
* *.server.in, *.c: replace all the OAFIIDs with more
sensibly named ones, that follow the namespacing
guidelines in the libbonobo/docs/FAQ. Needs a new
gnome-vfs to work well.
* src/nautilus-window-toolbars.c
(throbber_set_throbbing): impl.
(throbber_created_callback): upd.
(nautilus_window_allow_stop): upd.
* libnautilus-private/nautilus-mime-actions.c
(nautilus_do_component_query): remove hack around bonobo's
sample text component, we no longer have one.
Diffstat (limited to 'components/notes')
-rw-r--r-- | components/notes/Nautilus_View_notes.server.in | 4 | ||||
-rw-r--r-- | components/notes/Nautilus_View_notes.server.in.in | 4 | ||||
-rw-r--r-- | components/notes/nautilus-notes.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/components/notes/Nautilus_View_notes.server.in b/components/notes/Nautilus_View_notes.server.in index 9b1963af9..bbe9130fe 100644 --- a/components/notes/Nautilus_View_notes.server.in +++ b/components/notes/Nautilus_View_notes.server.in @@ -1,13 +1,13 @@ <oaf_info> -<oaf_server iid="OAFIID:nautilus_notes_view_factory:4b39e388-3ca2-4d68-9f3d-c137ee62d5b0" type="exe" location="nautilus-notes"> +<oaf_server iid="OAFIID:Nautilus_Notes_View_Factory" type="exe" location="nautilus-notes"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> </oaf_attribute> <oaf_attribute name="description" type="string" _value="Factory for annotation view"/> </oaf_server> -<oaf_server iid="OAFIID:nautilus_notes_view:7f04c3cb-df79-4b9a-a577-38b19ccd4185" type="factory" location="OAFIID:nautilus_notes_view_factory:4b39e388-3ca2-4d68-9f3d-c137ee62d5b0"> +<oaf_server iid="OAFIID:Nautilus_Notes_View" type="factory" location="OAFIID:Nautilus_Notes_View_Factory"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:Bonobo/Unknown:1.0"/> <item value="IDL:Bonobo/Control:1.0"/> diff --git a/components/notes/Nautilus_View_notes.server.in.in b/components/notes/Nautilus_View_notes.server.in.in index 9b1963af9..bbe9130fe 100644 --- a/components/notes/Nautilus_View_notes.server.in.in +++ b/components/notes/Nautilus_View_notes.server.in.in @@ -1,13 +1,13 @@ <oaf_info> -<oaf_server iid="OAFIID:nautilus_notes_view_factory:4b39e388-3ca2-4d68-9f3d-c137ee62d5b0" type="exe" location="nautilus-notes"> +<oaf_server iid="OAFIID:Nautilus_Notes_View_Factory" type="exe" location="nautilus-notes"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:GNOME/ObjectFactory:1.0"/> </oaf_attribute> <oaf_attribute name="description" type="string" _value="Factory for annotation view"/> </oaf_server> -<oaf_server iid="OAFIID:nautilus_notes_view:7f04c3cb-df79-4b9a-a577-38b19ccd4185" type="factory" location="OAFIID:nautilus_notes_view_factory:4b39e388-3ca2-4d68-9f3d-c137ee62d5b0"> +<oaf_server iid="OAFIID:Nautilus_Notes_View" type="factory" location="OAFIID:Nautilus_Notes_View_Factory"> <oaf_attribute name="repo_ids" type="stringv"> <item value="IDL:Bonobo/Unknown:1.0"/> <item value="IDL:Bonobo/Control:1.0"/> diff --git a/components/notes/nautilus-notes.c b/components/notes/nautilus-notes.c index 23dabc101..895c6d28c 100644 --- a/components/notes/nautilus-notes.c +++ b/components/notes/nautilus-notes.c @@ -430,8 +430,8 @@ main(int argc, char *argv[]) GNOMELOCALEDIR, argc, argv, - "OAFIID:nautilus_notes_view_factory:4b39e388-3ca2-4d68-9f3d-c137ee62d5b0", - "OAFIID:nautilus_notes_view:7f04c3cb-df79-4b9a-a577-38b19ccd4185", + "OAFIID:Nautilus_Notes_View_Factory", + "OAFIID:Nautilus_Notes_View", make_notes_view, nautilus_global_preferences_init, NULL); |