From 62a7f7c1aed216923c73aac0a14a4cf2b49d1a16 Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Wed, 3 Jan 2018 09:06:20 -0500 Subject: [PATCH] QLatin1String -> QStringLiteral --- src/EditProfileDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EditProfileDialog.cpp b/src/EditProfileDialog.cpp index 4cc0ad5a..3cc71fef 100644 --- a/src/EditProfileDialog.cpp +++ b/src/EditProfileDialog.cpp @@ -592,9 +592,9 @@ void EditProfileDialog::showAllFontsButtonWarning(bool enable) { if (enable) { KMessageBox::information(this, - QLatin1String( + QStringLiteral( "By its very nature, a terminal program requires font characters that are equal width (monospace). Any non monospaced font may cause display issues. This should not be necessary except in rare cases."), - QLatin1String("Warning")); + QStringLiteral("Warning")); } }