aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bazaar/bazaarplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2020-07-21 10:19:36 +0200
committerhjk <[email protected]>2020-07-21 12:42:27 +0000
commit43b658e9e7b4d939ad409fbf24d81dfa86b723f6 (patch)
tree2302b44722936a24e1889091b2b4b35bf05e4973 /src/plugins/bazaar/bazaarplugin.cpp
parentc41847ce5da4f40754f7ed90c3ad3d7db018d94a (diff)
Utils: Drop Utils::SkipEmptyParts again
We require Qt 5.14 nowadays. Change-Id: Iff245257d3cb19207007c0445ee13814e66152dd Reviewed-by: Orgad Shaneh <[email protected]> Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/bazaar/bazaarplugin.cpp')
-rw-r--r--src/plugins/bazaar/bazaarplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bazaar/bazaarplugin.cpp b/src/plugins/bazaar/bazaarplugin.cpp
index 0b58feaca25..0edd3f9e9da 100644
--- a/src/plugins/bazaar/bazaarplugin.cpp
+++ b/src/plugins/bazaar/bazaarplugin.cpp
@@ -789,7 +789,7 @@ bool BazaarPluginPrivate::submitEditorAboutToClose()
//rewrite entries of the form 'file => newfile' to 'newfile' because
//this would mess the commit command
for (QStringList::iterator iFile = files.begin(); iFile != files.end(); ++iFile) {
- const QStringList parts = iFile->split(QLatin1String(" => "), Utils::SkipEmptyParts);
+ const QStringList parts = iFile->split(QLatin1String(" => "), Qt::SkipEmptyParts);
if (!parts.isEmpty())
*iFile = parts.last();
}