diff options
author | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2004-08-31 15:26:40 (GMT) |
commit | d17bf39a43a7581773c67d496e4022499d59cd26 (patch) | |
tree | 89e964e0e9a207d726e4ffefb88b19c51c591817 /src/FbTk/TextBox.cc | |
parent | 6a78695e6ed92f8631b84874dcb754d32fcf99d5 (diff) | |
download | fluxbox_paul-d17bf39a43a7581773c67d496e4022499d59cd26.zip fluxbox_paul-d17bf39a43a7581773c67d496e4022499d59cd26.tar.bz2 |
add autoconf check for std c++ headers
Diffstat (limited to 'src/FbTk/TextBox.cc')
-rw-r--r-- | src/FbTk/TextBox.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/FbTk/TextBox.cc b/src/FbTk/TextBox.cc index a23f9a6..34671c9 100644 --- a/src/FbTk/TextBox.cc +++ b/src/FbTk/TextBox.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: TextBox.cc,v 1.11 2004/08/11 12:41:28 fluxgen Exp $ | 22 | // $Id: TextBox.cc,v 1.12 2004/08/31 15:26:39 rathnor Exp $ |
23 | 23 | ||
24 | #include "TextBox.hh" | 24 | #include "TextBox.hh" |
25 | #include "Font.hh" | 25 | #include "Font.hh" |
@@ -27,7 +27,11 @@ | |||
27 | #include "App.hh" | 27 | #include "App.hh" |
28 | #include "KeyUtil.hh" | 28 | #include "KeyUtil.hh" |
29 | 29 | ||
30 | #include <cctype> | 30 | #ifdef HAVE_CCTYPE |
31 | #include <cctype> | ||
32 | #else | ||
33 | #include <ctype.h> | ||
34 | #endif | ||
31 | #include <X11/keysym.h> | 35 | #include <X11/keysym.h> |
32 | #include <X11/Xutil.h> | 36 | #include <X11/Xutil.h> |
33 | 37 | ||