From e85ecdd9254a8bd222ccb2dfed7d3b3bb96c8294 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 7 Jan 2018 11:12:48 +0100 Subject: Introduce helper function empty_string() There are ca. 50 constructs of the kind same_string(s, "") to test for empty or null strings. Replace them by the new helper function empty_string(). Signed-off-by: Berthold Stoeger --- qt-models/diveplannermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qt-models/diveplannermodel.cpp') diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 49e977c63..b94894f2d 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -151,7 +151,7 @@ void DivePlannerPointsModel::setupCylinders() if (!cylinder_none(&(displayed_dive.cylinder[i]))) return; // We have at least one cylinder } - if (!same_string(prefs.default_cylinder, "")) { + if (!empty_string(prefs.default_cylinder)) { fill_default_cylinder(&displayed_dive.cylinder[0]); } if (cylinder_none(&displayed_dive.cylinder[0])) { -- cgit v1.2.3-70-g09d2