summaryrefslogtreecommitdiffstats
path: root/src/cardwidget.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cardwidget.cc')
-rw-r--r--src/cardwidget.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cardwidget.cc b/src/cardwidget.cc
index f401691..5755d46 100644
--- a/src/cardwidget.cc
+++ b/src/cardwidget.cc
@@ -105,15 +105,15 @@ QString ProfileGroup::getProfileName() {
return name;
// TODO
QHash<QString, int> counts;
- qDebug() << "Entries" << this;
+ //qDebug() << "Entries" << this;
for (auto n : entries) {
- qDebug() << n.tokens;
+ //qDebug() << n.tokens;
QSet<QString> tmp = n.tokens.toSet(); //(n.tokens.begin(), n.tokens.end());
for (auto t : tmp) {
counts[t]++;
}
}
- qDebug() << counts;
+ //qDebug() << counts;
QSet<QString> todo = counts.keys().toSet();
for (auto &pe : entries) {
QMutableListIterator<QString> it(pe.tokens);
@@ -137,7 +137,7 @@ void ProfileGroup::addEntry(const char *id, const char *name) {
auto *pe = new ProfileEntry;
bool paren = false;
const char *pos = name, *tokenStart = name;
- qDebug() << name << "is" << id;
+ //qDebug() << name << "is" << id;
while (*pos != '\0') {
if (!paren && isspace(*pos)) {
if (pos > tokenStart) {