summaryrefslogtreecommitdiff
path: root/components/notes/ntl-notes.c
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-05-24 22:16:01 +0000
committerDarin Adler <darin@src.gnome.org>2000-05-24 22:16:01 +0000
commit70659f55654efc207e296e0febea6d41767d1c0d (patch)
tree2160f7eb6480f2287bde42eaa387c9fa50094162 /components/notes/ntl-notes.c
parentf68147a3baf043bf1978095d5b936c248599be7b (diff)
downloadnautilus-70659f55654efc207e296e0febea6d41767d1c0d.tar.gz
[deleted] [deleted]
* libnautilus/Makefile.am: * libnautilus/libnautilus.h: * libnautilus/nautilus-meta-view-frame.c: [deleted] * libnautilus/nautilus-meta-view-frame.h: [deleted] * libnautilus/nautilus-view-component.idl: * po/POTFILES.in: * src/ntl-index-panel.c: (nautilus_index_panel_add_meta_view): * src/ntl-window.c: (nautilus_window_add_meta_view): Removed Nautilus::MetaView and all the related classes. We still have Nautilus::MetaViewFrame (will go soon). * components/help/hyperbola-nav-index.c: (hyperbola_navigation_index_new): * components/help/hyperbola-nav-search.c: (hyperbola_navigation_search_new): * components/help/hyperbola-nav-tree.c: (hyperbola_navigation_tree_new): * components/history/ntl-history-view.c: (make_obj): * components/loser/sidebar/nautilus-sidebar-loser.c: (nautilus_sidebar_loser_initialize), (loser_notify_location_change_callback): * components/loser/sidebar/nautilus-sidebar-loser.h: * components/notes/ntl-notes.c: (make_notes_view): * components/websearch/ntl-web-search.c: (make_obj): Changed to use just plain view insetad of meta_view. * libnautilus-extensions/nautilus-global-preferences.h: * libnautilus-extensions/nautilus-global-preferences.c: (global_preferences_create_dialog), (nautilus_global_preferences_get_sidebar_panel_view_identifiers), (nautilus_global_preferences_get_sidebar_view_iids), (nautilus_preferences_register_sidebar_view_preferences_for_ui), (global_preferences_register_for_ui): Changed naming to call them sidebar views instead of meta views, and got rid of code that depends on MetaView interface. We now use the sidebar_panel_name to determine if a view should show up in the sidebar. * src/ntl-view.h: Fixed a comment to reflect the future instead of the past.
Diffstat (limited to 'components/notes/ntl-notes.c')
-rw-r--r--components/notes/ntl-notes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/notes/ntl-notes.c b/components/notes/ntl-notes.c
index 9387fd0fb..7c8527f45 100644
--- a/components/notes/ntl-notes.c
+++ b/components/notes/ntl-notes.c
@@ -195,7 +195,7 @@ make_notes_view (BonoboGenericFactory *Factory, const char *goad_id, gpointer cl
gtk_widget_show_all (vbox);
/* Create CORBA object. */
- notes->view = NAUTILUS_VIEW (nautilus_meta_view_new (vbox));
+ notes->view = nautilus_view_new (vbox);
gtk_signal_connect (GTK_OBJECT (notes->view), "destroy", do_destroy, notes);
notes_object_count++;