Mercurial > audlegacy
comparison Plugins/Input/aac/src/fileinfo.c @ 896:e23aec1dd3ef trunk
[svn] - correct icon
author | nhjm449 |
---|---|
date | Wed, 29 Mar 2006 22:15:02 -0800 |
parents | ee3bf186998e |
children | 287d4eb3ca27 |
comparison
equal
deleted
inserted
replaced
895:1b919783797e | 896:e23aec1dd3ef |
---|---|
37 #include <libaudacious/vfs.h> | 37 #include <libaudacious/vfs.h> |
38 #include <libaudacious/xentry.h> | 38 #include <libaudacious/xentry.h> |
39 | 39 |
40 #include "tagging.h" | 40 #include "tagging.h" |
41 | 41 |
42 #include "mp3.xpm" | 42 #include "m4a.xpm" |
43 | 43 |
44 static GtkWidget *window = NULL; | 44 static GtkWidget *window = NULL; |
45 static GtkWidget *filename_entry, *id3_frame; | 45 static GtkWidget *filename_entry, *id3_frame; |
46 static GtkWidget *title_entry, *artist_entry, *album_entry, *year_entry, | 46 static GtkWidget *title_entry, *artist_entry, *album_entry, *year_entry, |
47 *tracknum_entry, *comment_entry; | 47 *tracknum_entry, *comment_entry; |
208 | 208 |
209 filename_vbox = gtk_hbox_new(FALSE, 5); | 209 filename_vbox = gtk_hbox_new(FALSE, 5); |
210 gtk_box_pack_start(GTK_BOX(vbox), filename_vbox, FALSE, TRUE, 0); | 210 gtk_box_pack_start(GTK_BOX(vbox), filename_vbox, FALSE, TRUE, 0); |
211 | 211 |
212 pixbuf = gdk_pixbuf_new_from_xpm_data((const gchar **) | 212 pixbuf = gdk_pixbuf_new_from_xpm_data((const gchar **) |
213 gnome_mime_audio_xpm); | 213 m4a_xpm); |
214 pixmapwid = gtk_image_new_from_pixbuf(pixbuf); | 214 pixmapwid = gtk_image_new_from_pixbuf(pixbuf); |
215 g_object_unref(pixbuf); | 215 g_object_unref(pixbuf); |
216 gtk_misc_set_alignment(GTK_MISC(pixmapwid), 0, 0); | 216 gtk_misc_set_alignment(GTK_MISC(pixmapwid), 0, 0); |
217 gtk_box_pack_start(GTK_BOX(filename_vbox), pixmapwid, FALSE, FALSE, | 217 gtk_box_pack_start(GTK_BOX(filename_vbox), pixmapwid, FALSE, FALSE, |
218 0); | 218 0); |