aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/FbString.hh
diff options
context:
space:
mode:
authormarkt <markt>2006-06-25 19:04:46 (GMT)
committermarkt <markt>2006-06-25 19:04:46 (GMT)
commitb699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c (patch)
tree40012ff6cd6458fb39f6a3a2055df283f3a6b5b1 /src/FbTk/FbString.hh
parentbf9b60833f87a8b328d71dac5879bdf7a0300d6e (diff)
downloadfluxbox-b699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c.zip
fluxbox-b699ed4d9e4fd99fd894b5d3d2e3767c41ebf80c.tar.bz2
Fix compile error with some compilers not including iconv.h before FbString.hh
Diffstat (limited to 'src/FbTk/FbString.hh')
-rw-r--r--src/FbTk/FbString.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/FbTk/FbString.hh b/src/FbTk/FbString.hh
index cfa44d9..502290b 100644
--- a/src/FbTk/FbString.hh
+++ b/src/FbTk/FbString.hh
@@ -27,6 +27,11 @@
27 27
28#include <string> 28#include <string>
29 29
30#include "config.h"
31#ifdef HAVE_ICONV
32#include <iconv.h>
33#endif // HAVE_ICONV
34
30namespace FbTk { 35namespace FbTk {
31 36
32// Use this type for things converted to our internal encoding (UTF-8) 37// Use this type for things converted to our internal encoding (UTF-8)