mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 00:20:40 -04:00
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>
18 lines
467 B
C
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))
|
|
{
|