changed order of includes
This commit is contained in:
parent
1660aeb268
commit
04169d609d
2 changed files with 12 additions and 14 deletions
|
@ -1,20 +1,18 @@
|
||||||
|
#include "bsetroot.hh"
|
||||||
|
|
||||||
|
#include "../src/i18n.hh"
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include "../config.h"
|
# include "../config.h"
|
||||||
#endif // HAVE_CONFIG_H
|
#endif // HAVE_CONFIG_H
|
||||||
|
|
||||||
#ifdef STDC_HEADERS
|
#include <X11/Xatom.h>
|
||||||
# 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 <cstring>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cstdio>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
|
bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef __bsetroot2_hh
|
#ifndef BSETROOT_HH
|
||||||
#define __bsetroot2_hh
|
#define BSETROOT_HH
|
||||||
|
|
||||||
#include "../src/BaseDisplay.hh"
|
#include "../src/BaseDisplay.hh"
|
||||||
#include "../src/Image.hh"
|
#include "../src/Image.hh"
|
||||||
|
@ -30,4 +30,4 @@ protected:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // __bsetroot2_hh
|
#endif // BSETROOT_HH
|
||||||
|
|
Loading…
Reference in a new issue