diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-06 19:46:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-06 19:46:53 +0000 |
commit | 0630a9067e5db373c6fd33bbe8145e29f18e9a54 (patch) | |
tree | aad17078eced96ff4bd82e7d519cba81ad8ebd65 /qtinterface/tqt4/Qt/q3cstring.h | |
parent | 6adef930fe704aa9ccf619c49d996c8185bb11bb (diff) | |
download | tqtinterface-0630a9067e5db373c6fd33bbe8145e29f18e9a54.tar.gz tqtinterface-0630a9067e5db373c6fd33bbe8145e29f18e9a54.zip |
Additional Qt4 support...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1160009 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/tqt4/Qt/q3cstring.h')
-rw-r--r-- | qtinterface/tqt4/Qt/q3cstring.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qtinterface/tqt4/Qt/q3cstring.h b/qtinterface/tqt4/Qt/q3cstring.h index 240ff8e..615e0e7 100644 --- a/qtinterface/tqt4/Qt/q3cstring.h +++ b/qtinterface/tqt4/Qt/q3cstring.h @@ -99,6 +99,9 @@ public: Q3CString &remove(uint index, uint len) { QByteArray::remove(index, len); return *this; } Q3CString &replace(uint index, uint len, const char *c) { QByteArray::replace(index, len, c); return *this; } +#ifndef QT_NO_REGEXP + Q3CString &replace( const QRegExp &, const char * ); +#endif Q3CString &replace(char c, const Q3CString &after) { return replace(c, after.constData()); } Q3CString &replace(char c, const char *after) { QByteArray::replace(c, after); return *this; } Q3CString &replace(const Q3CString &b, const Q3CString &a) |