ports/multimedia/gxmms/files/patch-src-xmmsctrl.c
Pav Lucistnik 6a81221960 Add gxmms, a simple GNOME panel applet that lets you control the basic
functions of the X MultiMedia System (XMMS). It has the following
features:

* Scrollable track time progress bar
* Volume control with mouse scrollwheel
* Buttons: Previous track - Play / Pause - Stop - Next track - Eject
* Real-time tooltips with track title and time
* Control repeat and shuffle properties
* Show/Hide main window, playlist editor, graphical eq and more
* Internazionalization (i18n)

PR:		ports/73480
Submitted by:	Radek Kozlowski <radek@raadradd.com>
2004-11-04 13:56:44 +00:00

18 lines
467 B
C

--- src/xmmsctrl.c.orig Fri Sep 3 00:19:54 2004
+++ src/xmmsctrl.c Thu Nov 4 14:36:56 2004
@@ -48,13 +48,14 @@
static gchar *msg_error = _("Sorry, unable to launch XMMS.");
gint timer;
time_t lt;
+ gchar *exec_this;
if (xmms_remote_is_running(xmms->session))
{
return;
}
- gchar *exec_this = g_strdup_printf("%s &", exec_cmd);
+ exec_this = g_strdup_printf("%s &", exec_cmd);
if (system(exec_this))
{