aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-11-12 14:40:26 (GMT)
committerfluxgen <fluxgen>2002-11-12 14:40:26 (GMT)
commita2c61d4d5d8dede7f0219fc4aeb928ead2a6f752 (patch)
tree71b2157a4d28da3fc2fed6ccf963d0268f7e059c
parent856da248f74246424f5d923a9414427bec8284b0 (diff)
downloadfluxbox-a2c61d4d5d8dede7f0219fc4aeb928ead2a6f752.zip
fluxbox-a2c61d4d5d8dede7f0219fc4aeb928ead2a6f752.tar.bz2
minor indent
-rw-r--r--src/BaseDisplay.cc33
1 files changed, 14 insertions, 19 deletions
diff --git a/src/BaseDisplay.cc b/src/BaseDisplay.cc
index 72c6cdb..507aaf1 100644
--- a/src/BaseDisplay.cc
+++ b/src/BaseDisplay.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: BaseDisplay.cc,v 1.21 2002/10/25 20:51:54 fluxgen Exp $ 25// $Id: BaseDisplay.cc,v 1.22 2002/11/12 14:40:26 fluxgen Exp $
26 26
27 27
28 28
@@ -31,7 +31,7 @@
31#include "Timer.hh" 31#include "Timer.hh"
32 32
33#ifdef HAVE_CONFIG_H 33#ifdef HAVE_CONFIG_H
34#include "../config.h" 34#include "config.h"
35#endif // HAVE_CONFIG_H 35#endif // HAVE_CONFIG_H
36 36
37// use GNU extensions 37// use GNU extensions
@@ -49,14 +49,9 @@
49#include <fcntl.h> 49#include <fcntl.h>
50#endif // HAVE_FCNTL_H 50#endif // HAVE_FCNTL_H
51 51
52#ifdef HAVE_STDIO_H 52#include <cstdio>
53#include <stdio.h> 53#include <cstdlib>
54#endif // HAVE_STDIO_H 54#include <cstring>
55
56#ifdef STDC_HEADERS
57#include <stdlib.h>
58#include <string.h>
59#endif // STDC_HEADERS
60 55
61#ifdef HAVE_UNISTD_H 56#ifdef HAVE_UNISTD_H
62#include <sys/types.h> 57#include <sys/types.h>
@@ -72,21 +67,21 @@
72#endif // HAVE_SIGNAL_H 67#endif // HAVE_SIGNAL_H
73 68
74#ifndef SA_NODEFER 69#ifndef SA_NODEFER
75# ifdef SA_INTERRUPT 70#ifdef SA_INTERRUPT
76# define SA_NODEFER SA_INTERRUPT 71#define SA_NODEFER SA_INTERRUPT
77# else // !SA_INTERRUPT 72#else // !SA_INTERRUPT
78# define SA_NODEFER (0) 73#define SA_NODEFER (0)
79# endif // SA_INTERRUPT 74#endif // SA_INTERRUPT
80#endif // SA_NODEFER 75#endif // SA_NODEFER
81 76
82#ifdef HAVE_SYS_WAIT_H 77#ifdef HAVE_SYS_WAIT_H
83# include <sys/types.h> 78#include <sys/types.h>
84# include <sys/wait.h> 79#include <sys/wait.h>
85#endif // HAVE_SYS_WAIT_H 80#endif // HAVE_SYS_WAIT_H
86 81
87#if defined(HAVE_PROCESS_H) && defined(__EMX__) 82#if defined(HAVE_PROCESS_H) && defined(__EMX__)
88# include <process.h> 83#include <process.h>
89#endif // HAVE_PROCESS_H __EMX__ 84#endif // HAVE_PROCESS_H && __EMX__
90 85
91#include <iostream> 86#include <iostream>
92using namespace std; 87using namespace std;