diff options
author | Alexander van der Meij <[email protected]> | 2014-08-29 20:52:13 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-10-27 11:23:51 +0100 |
commit | 451eef9b275ce006b270a3569d96e531e24dd15a (patch) | |
tree | c69beecbd84db9fc21479f4b0b5c2246c466d819 /src/caja-window-toolbars.c | |
parent | 2ce11c50a5f7cca914af7646cae5fb6d5362b5cf (diff) | |
download | caja-451eef9b275ce006b270a3569d96e531e24dd15a.tar.bz2 caja-451eef9b275ce006b270a3569d96e531e24dd15a.tar.xz |
implementation of extension interface and status management (gsoc2014)
Diffstat (limited to 'src/caja-window-toolbars.c')
-rw-r--r-- | src/caja-window-toolbars.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/caja-window-toolbars.c b/src/caja-window-toolbars.c index 1d6a22fb..0ad576fa 100644 --- a/src/caja-window-toolbars.c +++ b/src/caja-window-toolbars.c @@ -41,6 +41,7 @@ #include <glib/gi18n.h> #include <libcaja-extension/caja-menu-provider.h> #include <libcaja-private/caja-bookmark.h> +#include <libcaja-private/caja-extensions.h> #include <libcaja-private/caja-file-utilities.h> #include <libcaja-private/caja-ui-utilities.h> #include <libcaja-private/caja-global-preferences.h> @@ -117,7 +118,7 @@ get_extension_toolbar_items (CajaNavigationWindow *window) GList *providers; GList *l; - providers = caja_module_get_extensions_for_type (CAJA_TYPE_MENU_PROVIDER); + providers = caja_extensions_get_for_type (CAJA_TYPE_MENU_PROVIDER); items = NULL; slot = CAJA_WINDOW (window)->details->active_pane->active_slot; |