comparison src/audacious/ui_main.c @ 4528:2638175099e0

Restore util_menu_main_show() for plugins - thanks go to ccr for the first fix! ;-)
author mf0102 <0102@gmx.at>
date Wed, 30 Apr 2008 14:36:50 +0200
parents 6e412073cf28
children d4c5719d30d1
comparison
equal deleted inserted replaced
4527:53bd726e4461 4528:2638175099e0
2865 void 2865 void
2866 action_quit( void ) 2866 action_quit( void )
2867 { 2867 {
2868 mainwin_quit_cb(); 2868 mainwin_quit_cb();
2869 } 2869 }
2870
2871 void
2872 util_menu_main_show( gint x , gint y , guint button , guint time )
2873 {
2874 /* convenience function that shows the main popup menu wherever requested */
2875 ui_manager_popup_menu_show( GTK_MENU(mainwin_general_menu),
2876 x , y , button , time );
2877 return;
2878 }