diff options
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 | ||