mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
dix: Move default screensaver defaults into globals.c
This commit is contained in:
committed by
Adam Jackson
parent
43fc530780
commit
ff4e2c24ec
@@ -93,10 +93,11 @@ CARD32 ScreenSaverInterval;
|
||||
int ScreenSaverBlanking;
|
||||
int ScreenSaverAllowExposures;
|
||||
|
||||
CARD32 defaultScreenSaverTime = DEFAULT_SCREEN_SAVER_TIME;
|
||||
CARD32 defaultScreenSaverInterval = DEFAULT_SCREEN_SAVER_INTERVAL;
|
||||
int defaultScreenSaverBlanking = DEFAULT_SCREEN_SAVER_BLANKING;
|
||||
int defaultScreenSaverAllowExposures = DEFAULT_SCREEN_SAVER_EXPOSURES;
|
||||
/* default time of 10 minutes */
|
||||
CARD32 defaultScreenSaverTime = (10 * (60 * 1000));
|
||||
CARD32 defaultScreenSaverInterval = (10 * (60 * 1000));
|
||||
int defaultScreenSaverBlanking = PreferBlanking;
|
||||
int defaultScreenSaverAllowExposures = AllowExposures;
|
||||
|
||||
#ifdef SCREENSAVER
|
||||
Bool screenSaverSuspended = FALSE;
|
||||
|
||||
Reference in New Issue
Block a user