Don't install Quit action into MooTermWindowClass

master
Yevgen Muntyan 2006-06-11 15:48:53 -05:00
parent 85b69d280a
commit 357e6e65f7
1 changed files with 10 additions and 10 deletions

View File

@ -1179,16 +1179,6 @@ install_actions (MooApp *app,
about = g_strdup_printf ("About %s", app->priv->info->full_name);
_about = g_strdup_printf ("_About %s", app->priv->info->full_name);
moo_window_class_new_action (klass, "Quit",
"display-name", "Quit",
"label", "_Quit",
"tooltip", "Quit",
"stock-id", GTK_STOCK_QUIT,
"accel", "<ctrl>Q",
"closure-callback", moo_app_quit,
"closure-proxy-func", moo_app_get_instance,
NULL);
moo_window_class_new_action (klass, "Preferences",
"display-name", "Preferences",
"label", "Pre_ferences",
@ -1220,6 +1210,16 @@ install_editor_actions (MooApp *app)
g_return_if_fail (klass != NULL);
moo_window_class_new_action (klass, "Quit",
"display-name", "Quit",
"label", "_Quit",
"tooltip", "Quit",
"stock-id", GTK_STOCK_QUIT,
"accel", "<ctrl>Q",
"closure-callback", moo_app_quit,
"closure-proxy-func", moo_app_get_instance,
NULL);
install_actions (app, MOO_TYPE_EDIT_WINDOW);
g_type_class_unref (klass);