mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Qt6: deal with changes from QStringRef to QStringView
QStringRef is gone in Qt6 and mostly replaced by QStringView. The one major difference is that direct comparisons with string literals are no longer possible. Thanks to Thiago Macieira for helping me avoid more conditional compilation here. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
47d900bee5
commit
78361ef8e3
3 changed files with 25 additions and 7 deletions
|
|
@ -1,6 +1,7 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include "core/parse-gpx.h"
|
||||
#include "core/subsurface-time.h"
|
||||
#include "core/namecmp.h"
|
||||
#include <QFile>
|
||||
#include <QXmlStreamReader>
|
||||
|
||||
|
|
@ -43,7 +44,7 @@ int getCoordsFromGPXFile(struct dive_coords *coords, QString fileName)
|
|||
while (!gpxReader.atEnd()) {
|
||||
gpxReader.readNext();
|
||||
if (gpxReader.isStartElement()) {
|
||||
if (gpxReader.name() == "trkpt") {
|
||||
if (nameCmp(gpxReader, "trkpt") == 0) {
|
||||
trkpt_found = true;
|
||||
line++;
|
||||
foreach (const QXmlStreamAttribute &attr, gpxReader.attributes()) {
|
||||
|
|
@ -53,7 +54,7 @@ int getCoordsFromGPXFile(struct dive_coords *coords, QString fileName)
|
|||
lon = attr.value().toString().toDouble();
|
||||
}
|
||||
}
|
||||
if (gpxReader.name() == "time" && trkpt_found) { // Ignore the <time> element in the GPX file header
|
||||
if (nameCmp(gpxReader, "time") == 0 && trkpt_found) { // Ignore the <time> element in the GPX file header
|
||||
QString dateTimeString = gpxReader.readElementText();
|
||||
bool ok;
|
||||
tm1.tm_year = dateTimeString.left(4).toInt(&ok, 10); // Extract the date/time components:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue