[Rhythmbox-devel] formats in the about box



Hey,

I forgot to update the formats about box when I added MPEG-4 support. I
also made it so that there's no trailing spaces ;)

Please commit.

---
Bastien Nocera <hadess@hadess.net> 
Her vocabulary was as bad as, like, whatever. 
Index: rb-shell.c
===================================================================
RCS file: /cvs/gnome/rhythmbox/shell/rb-shell.c,v
retrieving revision 1.222
diff -u -r1.222 rb-shell.c
--- rb-shell.c	21 Nov 2003 04:03:49 -0000	1.222
+++ rb-shell.c	21 Nov 2003 17:07:48 -0000
@@ -1602,13 +1602,16 @@
 		backend = "xine-lib";
 #endif		
 #ifdef HAVE_MP3
-		g_string_append (formats, "MP3 ");
+		g_string_append (formats, "MP3");
 #endif
 #ifdef HAVE_VORBIS
-		g_string_append (formats, "Vorbis ");
+		g_string_append (formats, " Vorbis");
 #endif
 #ifdef HAVE_FLAC
-		g_string_append (formats, "FLAC ");
+		g_string_append (formats, " FLAC");
+#endif
+#ifdef HAVE_MP4
+		g_string_append (formats, " MPEG-4");
 #endif
 
 		comment = g_strdup_printf (_("Music management and playback software for GNOME.\nAudio backend: %s\nAudio formats: %s\n"), backend, formats->str);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]