aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-04-08 22:23:41 (GMT)
committerfluxgen <fluxgen>2002-04-08 22:23:41 (GMT)
commit0e60ec478f984cff3753ff60115a0d426604f101 (patch)
tree8cf5e244b61e125788cc720ffa51be14f14edda0 /src
parentd496d26c1a577e86b5267257ea49f04cf74da4fd (diff)
downloadfluxbox_pavel-0e60ec478f984cff3753ff60115a0d426604f101.zip
fluxbox_pavel-0e60ec478f984cff3753ff60115a0d426604f101.tar.bz2
minor indentation
Diffstat (limited to 'src')
-rw-r--r--src/BaseDisplay.cc31
1 files changed, 15 insertions, 16 deletions
diff --git a/src/BaseDisplay.cc b/src/BaseDisplay.cc
index 984a9db..df07e2e 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.12 2002/04/04 11:28:19 fluxgen Exp $ 25// $Id: BaseDisplay.cc,v 1.13 2002/04/08 22:23:41 fluxgen Exp $
26 26
27// use GNU extensions 27// use GNU extensions
28#ifndef _GNU_SOURCE 28#ifndef _GNU_SOURCE
@@ -44,31 +44,30 @@
44# include <X11/extensions/shape.h> 44# include <X11/extensions/shape.h>
45#endif // SHAPE 45#endif // SHAPE
46 46
47 47#ifdef HAVE_FCNTL_H
48#ifdef HAVE_FCNTL_H 48#include <fcntl.h>
49# include <fcntl.h>
50#endif // HAVE_FCNTL_H 49#endif // HAVE_FCNTL_H
51 50
52#ifdef HAVE_STDIO_H 51#ifdef HAVE_STDIO_H
53# include <stdio.h> 52#include <stdio.h>
54#endif // HAVE_STDIO_H 53#endif // HAVE_STDIO_H
55 54
56#ifdef STDC_HEADERS 55#ifdef STDC_HEADERS
57# include <stdlib.h> 56#include <stdlib.h>
58# include <string.h> 57#include <string.h>
59#endif // STDC_HEADERS 58#endif // STDC_HEADERS
60 59
61#ifdef HAVE_UNISTD_H 60#ifdef HAVE_UNISTD_H
62# include <sys/types.h> 61#include <sys/types.h>
63# include <unistd.h> 62#include <unistd.h>
64#endif // HAVE_UNISTD_H 63#endif // HAVE_UNISTD_H
65 64
66#ifdef HAVE_SYS_SELECT_H 65#ifdef HAVE_SYS_SELECT_H
67# include <sys/select.h> 66#include <sys/select.h>
68#endif // HAVE_SYS_SELECT_H 67#endif // HAVE_SYS_SELECT_H
69 68
70#ifdef HAVE_SIGNAL_H 69#ifdef HAVE_SIGNAL_H
71# include <signal.h> 70#include <signal.h>
72#endif // HAVE_SIGNAL_H 71#endif // HAVE_SIGNAL_H
73 72
74#ifndef SA_NODEFER 73#ifndef SA_NODEFER