diff options
author | Michele Calgaro <[email protected]> | 2024-10-28 13:39:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-28 13:39:23 +0900 |
commit | 69e1261df646edf24612d7f953dac81182e7461b (patch) | |
tree | 5d9a9e9600f0592c3732fe7c9402134fd22d6651 /src/kernel/tqobject.cpp | |
parent | c9a75bccc60b6ac092f76a2624115fd8935f4888 (diff) | |
download | tqt3-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.cpp | 9 |
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 ) |