summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqobject.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-10-28 13:39:23 +0900
committerMichele Calgaro <[email protected]>2024-10-28 13:39:23 +0900
commit69e1261df646edf24612d7f953dac81182e7461b (patch)
tree5d9a9e9600f0592c3732fe7c9402134fd22d6651 /src/kernel/tqobject.cpp
parentc9a75bccc60b6ac092f76a2624115fd8935f4888 (diff)
downloadtqt3-69e1261df646edf24612d7f953dac81182e7461b.tar.gz
tqt3-69e1261df646edf24612d7f953dac81182e7461b.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <[email protected]>
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 )