Commit e7fa56f2 authored by Benoit Steiner's avatar Benoit Steiner

Le prototypes des fonctions Enable/DisableScreeSaver dans xutils.h ne
correspondait pas a leur declaration dans xutils.c


Benny
parent 08e1ada5
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include "common.h" #include "common.h"
#include "mtime.h" #include "mtime.h"
#include "intf_msg.h" #include "intf_msg.h"
#include "xutils.h"
/******************************************************************************* /*******************************************************************************
...@@ -57,10 +57,9 @@ int XTryLoadFont( Display *p_display, char *psz_font, XFontStruct **p_font ) ...@@ -57,10 +57,9 @@ int XTryLoadFont( Display *p_display, char *psz_font, XFontStruct **p_font )
* are made to XDisableScreenSaver, n successive calls to XEnableScreenSaver * are made to XDisableScreenSaver, n successive calls to XEnableScreenSaver
* will be required before the screen saver could effectively be activated. * will be required before the screen saver could effectively be activated.
*******************************************************************************/ *******************************************************************************/
int XEnableScreenSaver( Display *p_display ) void XEnableScreenSaver( Display *p_display )
{ {
/* ?? */ /* ?? */
return( 0 );
} }
/******************************************************************************* /*******************************************************************************
...@@ -68,8 +67,7 @@ int XEnableScreenSaver( Display *p_display ) ...@@ -68,8 +67,7 @@ int XEnableScreenSaver( Display *p_display )
******************************************************************************* *******************************************************************************
* See XEnableScreenSaver * See XEnableScreenSaver
*******************************************************************************/ *******************************************************************************/
int XDisableScreenSaver( Display *p_display ) void XDisableScreenSaver( Display *p_display )
{ {
/* ?? */ /* ?? */
return( 0 );
} }
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