aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/tab-widgets/maintab.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-02-28 23:37:09 +0100
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2018-03-14 13:55:36 +0200
commitd1572a8d9574e80955796b8667317c8dbd376081 (patch)
treeab58f9920a20b5c55bd54474f2edcfdc4eb2b904 /desktop-widgets/tab-widgets/maintab.cpp
parentb72cc1f31784346884c8552c22f1e4c3c6d5ed1d (diff)
downloadsubsurface-d1572a8d9574e80955796b8667317c8dbd376081.tar.gz
Cleanup: introduce copy_qstring() function
strdup(qPrintable(s)) and copy_string(qPrintable(s)) were such common occurrences that they seem worthy of a short helper-function. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/maintab.cpp')
-rw-r--r--desktop-widgets/tab-widgets/maintab.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp
index 3a1f80cea..1f1997507 100644
--- a/desktop-widgets/tab-widgets/maintab.cpp
+++ b/desktop-widgets/tab-widgets/maintab.cpp
@@ -745,7 +745,7 @@ uint32_t MainTab::updateDiveSite(uint32_t pickedUuid, int divenr)
if(createdNewDive) {
copy_dive_site(origDs, newDs);
free(newDs->name);
- newDs->name = copy_string(qPrintable(ui.location->text().constData()));
+ newDs->name = copy_qstring(ui.location->text());
newDs->uuid = pickedUuid;
qDebug() << "Creating and copying dive site";
} else if (newDs->latitude.udeg == 0 && newDs->longitude.udeg == 0) {
@@ -1090,7 +1090,7 @@ void MainTab::on_buddy_textChanged()
text_list[i] = text_list[i].trimmed();
QString text = text_list.join(", ");
free(displayed_dive.buddy);
- displayed_dive.buddy = strdup(qPrintable(text));
+ displayed_dive.buddy = copy_qstring(text);
markChangedWidget(ui.buddy);
}
@@ -1107,7 +1107,7 @@ void MainTab::on_divemaster_textChanged()
text_list[i] = text_list[i].trimmed();
QString text = text_list.join(", ");
free(displayed_dive.divemaster);
- displayed_dive.divemaster = strdup(qPrintable(text));
+ displayed_dive.divemaster = copy_qstring(text);
markChangedWidget(ui.divemaster);
}
@@ -1303,7 +1303,7 @@ void MainTab::saveTaggedStrings()
}
}
free(mydive->buddy);
- mydive->buddy = copy_string(qPrintable(newString));
+ mydive->buddy = copy_qstring(newString);
);
addedList.clear();
removedList.clear();
@@ -1325,7 +1325,7 @@ void MainTab::saveTaggedStrings()
}
}
free(mydive->divemaster);
- mydive->divemaster = copy_string(qPrintable(newString));
+ mydive->divemaster = copy_qstring(newString);
);
}
@@ -1397,7 +1397,7 @@ void MainTab::on_diveTripLocation_textEdited(const QString& text)
{
if (currentTrip) {
free(displayedTrip.location);
- displayedTrip.location = strdup(qPrintable(text));
+ displayedTrip.location = copy_qstring(text);
markChangedWidget(ui.diveTripLocation);
}
}
@@ -1407,7 +1407,7 @@ void MainTab::on_suit_textChanged(const QString &text)
if (editMode == IGNORE || acceptingEdit == true)
return;
free(displayed_dive.suit);
- displayed_dive.suit = strdup(qPrintable(text));
+ displayed_dive.suit = copy_qstring(text);
markChangedWidget(ui.suit);
}
@@ -1419,15 +1419,15 @@ void MainTab::on_notes_textChanged()
if (same_string(displayedTrip.notes, qPrintable(ui.notes->toPlainText())))
return;
free(displayedTrip.notes);
- displayedTrip.notes = strdup(qPrintable(ui.notes->toPlainText()));
+ displayedTrip.notes = copy_qstring(ui.notes->toPlainText());
} else {
if (same_string(displayed_dive.notes, qPrintable(ui.notes->toPlainText())))
return;
free(displayed_dive.notes);
if (ui.notes->toHtml().indexOf("<table") != -1)
- displayed_dive.notes = strdup(qPrintable(ui.notes->toHtml()));
+ displayed_dive.notes = copy_qstring(ui.notes->toHtml());
else
- displayed_dive.notes = strdup(qPrintable(ui.notes->toPlainText()));
+ displayed_dive.notes = copy_qstring(ui.notes->toPlainText());
}
markChangedWidget(ui.notes);
}