summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-13 03:23:47 -0500
committerJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-13 03:23:47 -0500
commitd15a87b0e646e2bffc0605ce8fdae4909e41995c (patch)
tree52c2df9fece3682246a9661fd57ed50469ad2bd8
parentb1f3c7ea510317dc45074f4b930bc15d77b0f03c (diff)
Fix lint issues
-rw-r--r--src/pluginlist.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index b31d60bf..cb3face6 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -1308,7 +1308,8 @@ QVariant PluginList::tooltipData(const QModelIndex& modelIndex) const
QString type = esp.hasMasterExtension ? "ESM" : "ESP";
toolTip +=
"<br><br>" + tr("This %1 is flagged as an ESL. It will adhere to the %1 load "
- "order but the records will be loaded in ESL space.").arg(type);
+ "order but the records will be loaded in ESL space.")
+ .arg(type);
}
if (esp.forceDisabled) {