summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qdir.cpp8
-rw-r--r--qtools/qgvector.cpp2
-rw-r--r--qtools/qstring.h6
-rw-r--r--qtools/qtl.doc2
-rw-r--r--qtools/qxml.cpp2
5 files changed, 10 insertions, 10 deletions
diff --git a/qtools/qdir.cpp b/qtools/qdir.cpp
index 120abe7..782a9c6 100644
--- a/qtools/qdir.cpp
+++ b/qtools/qdir.cpp
@@ -705,7 +705,7 @@ QStrList QDir::encodedEntryList( const QString &nameFilter,
indicated by the setSorting(), setFilter() and setNameFilter()
specifications.
- The the filter and sorting specifications can be overridden using the
+ The filter and sorting specifications can be overridden using the
\e filterSpec and \e sortSpec arguments.
Returns an empty list if the directory is unreadable or does not exist.
@@ -727,7 +727,7 @@ QStringList QDir::entryList( int filterSpec, int sortSpec ) const
indicated by the setSorting(), setFilter() and setNameFilter()
specifications.
- The the filter and sorting specifications can be overridden using the
+ The filter and sorting specifications can be overridden using the
\e nameFilter, \e filterSpec and \e sortSpec arguments.
Returns and empty list if the directory is unreadable or does not exist.
@@ -755,7 +755,7 @@ QStringList QDir::entryList( const QString &nameFilter,
the directory pointed to using the setSorting(), setFilter() and
setNameFilter() specifications.
- The the filter and sorting specifications can be overridden using the
+ The filter and sorting specifications can be overridden using the
\e filterSpec and \e sortSpec arguments.
Returns 0 if the directory is unreadable or does not exist.
@@ -782,7 +782,7 @@ const QFileInfoList *QDir::entryInfoList( int filterSpec, int sortSpec ) const
the directory pointed to using the setSorting(), setFilter() and
setNameFilter() specifications.
- The the filter and sorting specifications can be overridden using the
+ The filter and sorting specifications can be overridden using the
\e nameFilter, \e filterSpec and \e sortSpec arguments.
Returns 0 if the directory is unreadable or does not exist.
diff --git a/qtools/qgvector.cpp b/qtools/qgvector.cpp
index 88409ce..63cce64 100644
--- a/qtools/qgvector.cpp
+++ b/qtools/qgvector.cpp
@@ -68,7 +68,7 @@
the QVector collection class.
QGVector has some virtual functions that may be reimplemented in
- subclasses to to customize behavior.
+ subclasses to customize behavior.
<ul>
<li> compareItems() compares two collection/vector items.
diff --git a/qtools/qstring.h b/qtools/qstring.h
index 5fcff29..d459132 100644
--- a/qtools/qstring.h
+++ b/qtools/qstring.h
@@ -384,7 +384,7 @@ public:
* - As return value for basicDirection(), it means that the first strong character
* of the source string has a left-to-right direction.
*/
- DirLTR = 0b01,
+ DirLTR = 0x1,
/// Right-to-left text.
/*!
* - As return value for direction(), it means that the source string
@@ -392,13 +392,13 @@ public:
* - As return value for basicDirection(), it means that the first strong character
* of the source string has a right-to-left direction.
*/
- DirRTL = 0b10,
+ DirRTL = 0x2,
/// Mixed-directional text
/*!
* As return value for direction(), it means that the source string
* contains both left-to-right and right-to-left characters.
*/
- DirMixed = 0b11
+ DirMixed = 0x3
};
//QT_STATIC_CONST QString null;
diff --git a/qtools/qtl.doc b/qtools/qtl.doc
index db5b994..e83b177 100644
--- a/qtools/qtl.doc
+++ b/qtools/qtl.doc
@@ -111,7 +111,7 @@ end() returns an iterator that points \e after the last
element. end() marks an invalid position, it can never be
dereferenced. It's the break condition in any iteration, may it be
from begin() or fromLast(). For maximum speed, use increment or
-decrement iterators with the prefix operator (++it, --it) instead of the the
+decrement iterators with the prefix operator (++it, --it) instead of the
postfix one (it++, it--), since the former is slightly faster.
The same concept applies to the other container classes:
diff --git a/qtools/qxml.cpp b/qtools/qxml.cpp
index 072997e..4138a28 100644
--- a/qtools/qxml.cpp
+++ b/qtools/qxml.cpp
@@ -1959,7 +1959,7 @@ bool QXmlSimpleReader::feature( const QString& name, bool *ok ) const
<li> http://xml.org/sax/features/namespaces:
if this feature is TRUE, namespace processing is performed
<li> http://xml.org/sax/features/namespace-prefixes:
- if this feature is TRUE, the the original prefixed names and attributes
+ if this feature is TRUE, the original prefixed names and attributes
used for namespace declarations are reported
<li> http://trolltech.com/xml/features/report-whitespace-only-CharData:
if this feature is TRUE, CharData that consists only of whitespace (and