Home · All Namespaces · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.
Use end() instead.
For example, if you have code like
QStringList::Iterator i = list.fromLast();
you can rewrite it as
QStringList::Iterator i = list.isEmpty() ? list.end() : --list.end();
This is an overloaded member function, provided for convenience.
Use end() instead.
For example, if you have code like
QStringList::ConstIterator i = list.fromLast();
you can rewrite it as
QStringList::ConstIterator i = list.isEmpty() ? list.end() : --list.end();
Use filter() instead.
This is an overloaded member function, provided for convenience.
Use filter() instead.
Use replaceInStrings() instead.
This is an overloaded member function, provided for convenience.
Use replaceInStrings() instead.
Use QString::split(sep, QString::SkipEmptyParts) or QString::split(sep, QString::KeepEmptyParts) instead.
Be aware that the QString::split()'s return value is a QStringList that always contains at least one element, even if str is empty.
See also join() and QString::section().
This is an overloaded member function, provided for convenience.
This version of the function uses a QChar as separator.
See also join() and QString::section().
This is an overloaded member function, provided for convenience.
This version of the function uses a QString as separator.
See also join() and QString::section().
Copyright © 2008 Nokia | Trademarks | Qt 4.4.3 |