diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/Window.cc b/src/Window.cc index c3f6190..8187c15 100644 --- a/src/Window.cc +++ b/src/Window.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: Window.cc,v 1.297 2004/08/29 12:35:29 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.298 2004/08/31 15:26:38 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -61,10 +61,22 @@ | |||
61 | #include <X11/Xatom.h> | 61 | #include <X11/Xatom.h> |
62 | #include <X11/keysym.h> | 62 | #include <X11/keysym.h> |
63 | 63 | ||
64 | #include <cstring> | 64 | #ifdef HAVE_CSTRING |
65 | #include <cstdio> | 65 | #include <cstring> |
66 | #else | ||
67 | #include <string.h> | ||
68 | #endif | ||
69 | #ifdef HAVE_CSTDIO | ||
70 | #include <cstdio> | ||
71 | #else | ||
72 | #include <stdio.h> | ||
73 | #endif | ||
66 | #include <iostream> | 74 | #include <iostream> |
67 | #include <cassert> | 75 | #ifdef HAVE_CASSERT |
76 | #include <cassert> | ||
77 | #else | ||
78 | #include <assert.h> | ||
79 | #endif | ||
68 | #include <functional> | 80 | #include <functional> |
69 | #include <algorithm> | 81 | #include <algorithm> |
70 | 82 | ||