Mercurial > audlegacy
comparison src/audacious/dbus.c @ 4413:de33c83aa06f
Huge renaming patch, changing BMP references to Audacious.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 31 Mar 2008 06:47:48 +0300 |
parents | dfe5d686749e |
children | 19e3f3c5fe7f |
comparison
equal
deleted
inserted
replaced
4412:180996fcf12a | 4413:de33c83aa06f |
---|---|
872 gtk_window_present(GTK_WINDOW(mainwin)); | 872 gtk_window_present(GTK_WINDOW(mainwin)); |
873 return TRUE; | 873 return TRUE; |
874 } | 874 } |
875 | 875 |
876 gboolean audacious_rc_get_skin(RemoteObject *obj, gchar **skin, GError **error) { | 876 gboolean audacious_rc_get_skin(RemoteObject *obj, gchar **skin, GError **error) { |
877 *skin = g_strdup(bmp_active_skin->path); | 877 *skin = g_strdup(aud_active_skin->path); |
878 return TRUE; | 878 return TRUE; |
879 } | 879 } |
880 | 880 |
881 gboolean audacious_rc_set_skin(RemoteObject *obj, gchar *skin, GError **error) { | 881 gboolean audacious_rc_set_skin(RemoteObject *obj, gchar *skin, GError **error) { |
882 if (has_x11_connection == TRUE) | 882 if (has_x11_connection == TRUE) |
883 bmp_active_skin_load(skin); | 883 aud_active_skin_load(skin); |
884 return TRUE; | 884 return TRUE; |
885 } | 885 } |
886 | 886 |
887 gboolean audacious_rc_get_info(RemoteObject *obj, gint *rate, gint *freq, gint *nch, GError **error) { | 887 gboolean audacious_rc_get_info(RemoteObject *obj, gint *rate, gint *freq, gint *nch, GError **error) { |
888 playback_get_sample_params(rate, freq, nch); | 888 playback_get_sample_params(rate, freq, nch); |