Port to const QRegExp behaviour.
This commit is contained in:
parent
a3ec111ed6
commit
54f790a2a5
@ -516,7 +516,7 @@ void RunnerContext::restore(const KConfigGroup &config)
|
|||||||
{
|
{
|
||||||
const QStringList cfgList = config.readEntry("LaunchCounts", QStringList());
|
const QStringList cfgList = config.readEntry("LaunchCounts", QStringList());
|
||||||
|
|
||||||
const QRegExp r("(\\d*) (.*)");
|
QRegExp r("(\\d*) (.*)");
|
||||||
foreach (const QString& entry, cfgList) {
|
foreach (const QString& entry, cfgList) {
|
||||||
r.indexIn(entry);
|
r.indexIn(entry);
|
||||||
int count = r.cap(1).toInt();
|
int count = r.cap(1).toInt();
|
||||||
|
Loading…
Reference in New Issue
Block a user