changeset 85:8c8a20f72ace trunk

[svn] s/static GTKItemFactoryEntry/GTKItemFactoryEntry/g.
author nenolod
date Mon, 31 Oct 2005 21:16:49 -0800
parents d8c52eae9f25
children 2d8234ea45e8
files audacious/main.c audacious/mainwin.c
diffstat 2 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/audacious/main.c	Mon Oct 31 21:06:43 2005 -0800
+++ b/audacious/main.c	Mon Oct 31 21:16:49 2005 -0800
@@ -74,9 +74,9 @@
 
 
 /* Translatable string for beep.desktop's comment field */
-const gchar *desktop_comment = N_("Beep Media Player");
+const gchar *desktop_comment = N_("Audacious");
 
-const gchar *application_name = N_("Beep Media Player");
+const gchar *application_name = N_("Audacious");
 
 
 struct _BmpCmdLineOpt {
@@ -234,7 +234,7 @@
     {"playlist_visible", &cfg.playlist_visible, TRUE},
     {"playlist_transparent", &cfg.playlist_transparent, TRUE},
     {"use_fontsets", &cfg.use_fontsets, TRUE},
-    {"mainwin_use_xfont", &cfg.mainwin_use_xfont, TRUE},
+    {"mainwin_use_xfont", &cfg.mainwin_use_xfont, FALSE},
     {"equalizer_visible", &cfg.equalizer_visible, TRUE},
     {"equalizer_active", &cfg.equalizer_active, TRUE},
     {"equalizer_shaded", &cfg.equalizer_shaded, TRUE},
--- a/audacious/mainwin.c	Mon Oct 31 21:06:43 2005 -0800
+++ b/audacious/mainwin.c	Mon Oct 31 21:16:49 2005 -0800
@@ -231,7 +231,7 @@
 
 /* Song name area menu */
 
-static GtkItemFactoryEntry mainwin_songname_menu_entries[] = {
+GtkItemFactoryEntry mainwin_songname_menu_entries[] = {
     {N_("/View Track Details"), "<alt>i", mainwin_general_menu_callback,
      MAINWIN_GENERAL_FILEINFO, "<ImageItem>", my_pixbuf},
     {"/-", NULL, NULL, 0, "<Separator>"},
@@ -244,7 +244,7 @@
 
 /* Mini-visualizer area menu */
 
-static GtkItemFactoryEntry mainwin_vis_menu_entries[] = {
+GtkItemFactoryEntry mainwin_vis_menu_entries[] = {
     {N_("/Visualization Mode"), NULL, NULL, 0, "<Branch>"},
     {N_("/Visualization Mode/Analyzer"), NULL, mainwin_vis_menu_callback,
      MAINWIN_VIS_ANALYZER, "<RadioItem>"},
@@ -317,7 +317,7 @@
 
 /* Playback menu (now used only for accelerators) */
 
-static GtkItemFactoryEntry mainwin_playback_menu_entries[] = {
+GtkItemFactoryEntry mainwin_playback_menu_entries[] = {
 /*
     {N_("/Play CD"), "<alt>C", mainwin_general_menu_callback,
      MAINWIN_GENERAL_PLAYCD, "<StockItem>", GTK_STOCK_CDROM},
@@ -357,7 +357,7 @@
 
 /* Main menu */
 
-static GtkItemFactoryEntry mainwin_general_menu_entries[] = {
+GtkItemFactoryEntry mainwin_general_menu_entries[] = {
     { N_("/View Track Details"), "<alt>I", mainwin_general_menu_callback,
      MAINWIN_GENERAL_FILEINFO, "<ImageItem>", my_pixbuf},
     {"/-", NULL, NULL, 0, "<Separator>"},
@@ -376,7 +376,7 @@
 
 /* Add submenu */
 
-static GtkItemFactoryEntry mainwin_add_menu_entries[] = {
+GtkItemFactoryEntry mainwin_add_menu_entries[] = {
     {N_("/Files..."), "f", mainwin_general_menu_callback,
      MAINWIN_GENERAL_PLAYFILE, "<StockItem>", GTK_STOCK_OPEN},
 /*
@@ -397,7 +397,7 @@
 
 /* View submenu */
 
-static GtkItemFactoryEntry mainwin_view_menu_entries[] = {
+GtkItemFactoryEntry mainwin_view_menu_entries[] = {
     {N_("/Show Playlist Editor"), "<alt>E", mainwin_general_menu_callback,
      MAINWIN_GENERAL_SHOWPLWIN, "<ToggleItem>"},
     {N_("/Show Equalizer"), "<alt>G", mainwin_general_menu_callback,