Commit 9c03ddbb authored by Rémi Duraffort's avatar Rémi Duraffort

Cosmetics.

parent 45af95ff
...@@ -263,8 +263,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -263,8 +263,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/* libnotify callback, called when the "Next" button is pressed */
static void Next( NotifyNotification *notification, gchar *psz, gpointer p ) static void Next( NotifyNotification *notification, gchar *psz, gpointer p )
{ /* libnotify callback, called when the "Next" button is pressed */ {
vlc_object_t *p_object = (vlc_object_t*)p; vlc_object_t *p_object = (vlc_object_t*)p;
VLC_UNUSED(psz); VLC_UNUSED(psz);
...@@ -274,8 +275,9 @@ static void Next( NotifyNotification *notification, gchar *psz, gpointer p ) ...@@ -274,8 +275,9 @@ static void Next( NotifyNotification *notification, gchar *psz, gpointer p )
pl_Release( p_object ); pl_Release( p_object );
} }
/* libnotify callback, called when the "Previous" button is pressed */
static void Prev( NotifyNotification *notification, gchar *psz, gpointer p ) static void Prev( NotifyNotification *notification, gchar *psz, gpointer p )
{ /* libnotify callback, called when the "Previous" button is pressed */ {
vlc_object_t *p_object = (vlc_object_t*)p; vlc_object_t *p_object = (vlc_object_t*)p;
VLC_UNUSED(psz); VLC_UNUSED(psz);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment