summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/tqobject.cpp')
-rw-r--r--src/kernel/tqobject.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/kernel/tqobject.cpp b/src/kernel/tqobject.cpp
index e37cf1481..5b2d3fd68 100644
--- a/src/kernel/tqobject.cpp
+++ b/src/kernel/tqobject.cpp
@@ -418,16 +418,7 @@ static inline bool isIdentChar( char x )
static inline bool isSpace( char x )
{
-#if defined(Q_CC_BOR)
- /*
- Borland C++ 4.5 has a weird isspace() bug.
- isspace() usually works, but not here.
- This implementation is sufficient for our internal use: rmWS()
- */
- return (uchar) x <= 32;
-#else
return isspace( (uchar) x );
-#endif
}
static TQCString qt_rmWS( const char *s )