Do distribute the files in MAINTAINERCLEANFILES.
[kdbg.git] / config.h.bot
blob67262d14f838f60535b8669c10ac9eed6d1ba627
2 #ifndef HAVE_BOOL
3 #define HAVE_BOOL
4 typedef int bool;
5 const bool false = 0;
6 const bool true = 1;
7 #endif
9 #ifdef QT_VERSION
10 # if QT_VERSION < 200
11 #  define SIZED_QString(name,size) QString name(size)
12 #  define FROM_LATIN1(cstr,len) QString(cstr,(len)+1)
13 # else
14 #  define SIZED_QString(name,size) QString name
15 #  define FROM_LATIN1(cstr,len) QString::fromLatin1(cstr,len)
16 # endif
17 #endif