summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2010-06-25 11:31:51 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2010-06-25 11:31:51 (GMT)
commitc37c8626674dd6ba0d53dcad84dd4bb5d92005a4 (patch)
treefa51c4ac8c1fe241b2d6c4af9d2f9a1297ce8e0a /qtools
parent0c6ee149829948582e5e5c1b96c8b3105b02672a (diff)
downloadDoxygen-c37c8626674dd6ba0d53dcad84dd4bb5d92005a4.zip
Doxygen-c37c8626674dd6ba0d53dcad84dd4bb5d92005a4.tar.gz
Doxygen-c37c8626674dd6ba0d53dcad84dd4bb5d92005a4.tar.bz2
Release-1.7.1
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qcstring.h10
-rw-r--r--qtools/qtextstream.cpp2
-rw-r--r--qtools/qutfcodec.cpp4
3 files changed, 13 insertions, 3 deletions
diff --git a/qtools/qcstring.h b/qtools/qcstring.h
index 032d731..1e5f6f8 100644
--- a/qtools/qcstring.h
+++ b/qtools/qcstring.h
@@ -450,5 +450,15 @@ Q_EXPORT inline QCString operator+( char c1, const QCString &s2 )
return tmp;
}
+inline const char *qPrint(const char *s)
+{
+ if (s) return s; else return "";
+}
+
+inline const char *qPrint(const QCString &s)
+{
+ if (!s.isEmpty()) return s.data(); else return "";
+}
+
#endif // QCSTRING_H
diff --git a/qtools/qtextstream.cpp b/qtools/qtextstream.cpp
index 6686f81..b12f86d 100644
--- a/qtools/qtextstream.cpp
+++ b/qtools/qtextstream.cpp
@@ -553,7 +553,7 @@ QTextStream::QTextStream( QByteArray a, int mode )
dev = new QBuffer( a );
((QBuffer *)dev)->open( mode );
owndev = TRUE;
- setEncoding( Latin1 ); //### Locale???
+ setEncoding( Locale ); //### Locale???
reset();
d->sourceType = QTextStreamPrivate::ByteArray;
}
diff --git a/qtools/qutfcodec.cpp b/qtools/qutfcodec.cpp
index f64812c..b0caa76 100644
--- a/qtools/qutfcodec.cpp
+++ b/qtools/qutfcodec.cpp
@@ -181,8 +181,8 @@ const char* QUtf16Codec::name() const
int QUtf16Codec::heuristicContentMatch(const char* chars, int len) const
{
uchar* uchars = (uchar*)chars;
- if ( len >= 2 && (uchars[0] == 0xff && uchars[1] == 0xfe ||
- uchars[1] == 0xff && uchars[0] == 0xfe) )
+ if ( len >= 2 && ((uchars[0] == 0xff && uchars[1] == 0xfe) ||
+ (uchars[1] == 0xff && uchars[0] == 0xfe)) )
return len;
else
return 0;