diff options
author | markt <markt> | 2007-06-29 17:25:24 (GMT) |
---|---|---|
committer | markt <markt> | 2007-06-29 17:25:24 (GMT) |
commit | 329fca30fdbbc051a733c6d15efa6b95370ac221 (patch) | |
tree | 4090f3986160129efdb9f97a000efdbee44804bc /src/FbTk/TextBox.cc | |
parent | 35251ef5c9bcf12abeee3e9b69a0ef85df3319dc (diff) | |
download | fluxbox_pavel-329fca30fdbbc051a733c6d15efa6b95370ac221.zip fluxbox_pavel-329fca30fdbbc051a733c6d15efa6b95370ac221.tar.bz2 |
updates for compiling with gcc 4.3
Diffstat (limited to 'src/FbTk/TextBox.cc')
-rw-r--r-- | src/FbTk/TextBox.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/FbTk/TextBox.cc b/src/FbTk/TextBox.cc index 19c44dc..fa1600e 100644 --- a/src/FbTk/TextBox.cc +++ b/src/FbTk/TextBox.cc | |||
@@ -32,6 +32,16 @@ | |||
32 | #else | 32 | #else |
33 | #include <ctype.h> | 33 | #include <ctype.h> |
34 | #endif | 34 | #endif |
35 | #ifdef HAVE_CSTRING | ||
36 | #include <cstring> | ||
37 | #else | ||
38 | #include <string.h> | ||
39 | #endif | ||
40 | #ifdef HAVE_CSTDLIB | ||
41 | #include <cstdlib> | ||
42 | #else | ||
43 | #include <stdlib.h> | ||
44 | #endif | ||
35 | #include <X11/keysym.h> | 45 | #include <X11/keysym.h> |
36 | #include <X11/Xutil.h> | 46 | #include <X11/Xutil.h> |
37 | 47 | ||