diff options
Diffstat (limited to 'applets/wncklet/window-menu.c')
-rw-r--r-- | applets/wncklet/window-menu.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/applets/wncklet/window-menu.c b/applets/wncklet/window-menu.c index dabdb7e8..c1884704 100644 --- a/applets/wncklet/window-menu.c +++ b/applets/wncklet/window-menu.c @@ -25,8 +25,6 @@ * Jacob Berkman <[email protected]> */ -#define WNCK_I_KNOW_THIS_IS_UNSTABLE 1 - #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -37,7 +35,7 @@ #include <glib/gi18n.h> #include <gdk/gdkkeysyms.h> -#include <libwnck/selector.h> +#include <libmatewnck/selector.h> #include "wncklet.h" #include "window-menu.h" @@ -59,6 +57,9 @@ static void window_menu_help(GtkAction* action, WindowMenu* window_menu) static void window_menu_about(GtkAction* action, WindowMenu* window_menu) { static const char* authors[] = { + "Perberos <[email protected]>", + "Steve Zesch <[email protected]>", + "Stefano Karapetsas <[email protected]>", "Mark McLoughlin <[email protected]>", "George Lebl <[email protected]>", "Jacob Berkman <[email protected]>", @@ -66,11 +67,12 @@ static void window_menu_about(GtkAction* action, WindowMenu* window_menu) }; const char* documenters[] = { - "Sun MATE Documentation Team <[email protected]>", + "Sun GNOME Documentation Team <[email protected]>", NULL }; char copyright[] = \ + "Copyright \xc2\xa9 2011 Perberos\n" "Copyright \xc2\xa9 2003 Sun Microsystems, Inc.\n" "Copyright \xc2\xa9 2001 Free Software Foundation, Inc.\n" "Copyright \xc2\xa9 2000 Helix Code, Inc."; @@ -85,7 +87,7 @@ static void window_menu_about(GtkAction* action, WindowMenu* window_menu) "logo-icon-name", WINDOW_MENU_ICON, "translator-credits", _("translator-credits"), "version", VERSION, - "website", "http://matsusoft.com.ar/projects/mate/", + "website", "http://www.mate-desktop.org/", NULL); } @@ -179,7 +181,7 @@ static void window_menu_size_allocate(MatePanelApplet* applet, GtkAllocation* al static gboolean window_menu_key_press_event(GtkWidget* widget, GdkEventKey* event, WindowMenu* window_menu) { GtkMenuShell* menu_shell; - WnckSelector* selector; + MatewnckSelector* selector; switch (event->keyval) { @@ -189,7 +191,7 @@ static gboolean window_menu_key_press_event(GtkWidget* widget, GdkEventKey* even case GDK_Return: case GDK_space: case GDK_KP_Space: - selector = WNCK_SELECTOR(window_menu->selector); + selector = MATEWNCK_SELECTOR(window_menu->selector); /* * We need to call _gtk_menu_shell_activate() here as is done in * window_key_press_handler in gtkmenubar.c which pops up menu @@ -249,7 +251,7 @@ gboolean window_menu_applet_fill(MatePanelApplet* applet) g_free(ui_path); g_object_unref(action_group); - window_menu->selector = wnck_selector_new(); + window_menu->selector = matewnck_selector_new(); gtk_container_add(GTK_CONTAINER(window_menu->applet), window_menu->selector); mate_panel_applet_set_background_widget(MATE_PANEL_APPLET(window_menu->applet), GTK_WIDGET(window_menu->selector)); |