1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
From 8e1a20b26d60976afdc068f7203cf35147b94a85 Mon Sep 17 00:00:00 2001
From: Laurent Montel <montel@kde.org>
Date: Thu, 19 Sep 2019 07:16:58 +0200
Subject: Make it compile without deprecated method
---
levelset.cpp | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/levelset.cpp b/levelset.cpp
index 5e001c1..98e4b6d 100644
--- a/levelset.cpp
+++ b/levelset.cpp
@@ -176,13 +176,12 @@ const LevelData* LevelSet::levelData(int levelNum) const
const LevelData* LevelSet::readLevel(int levelNum) const
{
KConfigGroup config = m_levelsFile->group(QStringLiteral("Level")+QString::number(levelNum));
- QString key;
QList<LevelData::Element> elements;
for (int j = 0; j < FIELD_SIZE; j++)
{
- key.sprintf("feld_%02d", j);
+ const QString key = QString::asprintf("feld_%02d", j);
QString line = config.readEntry(key,QString());
for (int i = 0; i < FIELD_SIZE; i++)
@@ -227,14 +226,13 @@ const Molecule* LevelSet::readLevelMolecule(int levelNum) const
Molecule* mol = new Molecule();
KConfigGroup config = m_levelsFile->group(QStringLiteral("Level")+QString::number(levelNum));
- QString key;
atom current;
int atom_index = 1;
QString value;
while (true) {
- key.sprintf("atom_%c", int2atom(atom_index));
+ const QString key = QString::asprintf("atom_%c", int2atom(atom_index));
value = config.readEntry(key,QString());
if (value.isEmpty())
break;
@@ -259,7 +257,7 @@ const Molecule* LevelSet::readLevelMolecule(int levelNum) const
int max_i = -1;
for (int j = 0; j < MOLECULE_SIZE; j++) {
- key.sprintf("mole_%d", j);
+ const QString key = QString::asprintf("mole_%d", j);
line = config.readEntry(key,QString());
int max_non_null_i = -1;
--
cgit v1.1
|