all repos — fluxbox @ 04169d609d8ca859ca83d39ede0b32ed5170232d

custom fork of the fluxbox windowmanager

changed order of includes
fluxgen fluxgen
commit

04169d609d8ca859ca83d39ede0b32ed5170232d

parent

1660aeb26881e5ccabcf216736c560af25186273

2 files changed, 12 insertions(+), 14 deletions(-)

jump to
M util/bsetroot.ccutil/bsetroot.cc

@@ -1,20 +1,18 @@

+#include "bsetroot.hh" + +#include "../src/i18n.hh" + #ifdef HAVE_CONFIG_H # include "../config.h" #endif // HAVE_CONFIG_H -#ifdef STDC_HEADERS -# include <string.h> -# include <stdlib.h> -#endif // STDC_HEADERS - -#ifdef HAVE_STDIO_H -# include <stdio.h> -#endif // HAVE_STDIO_H - -#include "../src/i18n.hh" -#include "bsetroot.hh" +#include <X11/Xatom.h> +#include <cstring> +#include <cstdlib> +#include <cstdio> #include <iostream> + using namespace std; bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
M util/bsetroot.hhutil/bsetroot.hh

@@ -1,5 +1,5 @@

-#ifndef __bsetroot2_hh -#define __bsetroot2_hh +#ifndef BSETROOT_HH +#define BSETROOT_HH #include "../src/BaseDisplay.hh" #include "../src/Image.hh"

@@ -30,4 +30,4 @@

}; -#endif // __bsetroot2_hh +#endif // BSETROOT_HH