Make HidePlayList() static.
It only has file scope.
author |
ib |
date |
Thu, 28 Mar 2013 17:17:21 +0000 |
parents |
6dfdebfa72b7 |
children |
613cb10f919c |
files |
gui/dialog/playlist.c gui/dialog/playlist.h |
diffstat |
2 files changed, 1 insertions(+), 2 deletions(-)
[+]
|
line diff
--- a/gui/dialog/playlist.c Thu Mar 28 17:10:57 2013 +0000
+++ b/gui/dialog/playlist.c Thu Mar 28 17:17:21 2013 +0000
@@ -160,7 +160,7 @@
gtk_widget_show( PlayList );
}
-void HidePlayList( void )
+static void HidePlayList( void )
{
if ( !PlayList ) return;
NrOfSelected=NrOfEntrys=0;
--- a/gui/dialog/playlist.h Thu Mar 28 17:10:57 2013 +0000
+++ b/gui/dialog/playlist.h Thu Mar 28 17:17:21 2013 +0000
@@ -22,7 +22,6 @@
#include <gtk/gtk.h>
void ShowPlayList( void );
-void HidePlayList( void );
GtkWidget * create_PlayList (void);