diff widgets/PluginReviewDialog.cpp @ 1293:6dd15b5c14f9 plugin-path-config

Various logic fixes, and use new setter-class structures
author Chris Cannam
date Fri, 25 May 2018 16:05:51 +0100
parents 41824255ddf2
children 9f9a7edd7d89
line wrap: on
line diff
--- a/widgets/PluginReviewDialog.cpp	Fri May 25 13:39:08 2018 +0100
+++ b/widgets/PluginReviewDialog.cpp	Fri May 25 16:05:51 2018 +0100
@@ -65,9 +65,9 @@
     m_table->setColumnCount(5);
 
     QStringList headers;
-    int typeCol = 0, libCol = 1, nameCol = 2, idCol = 3, dirCol = 4;
-    headers << tr("Type") << tr("Library") << tr("Name")
-            << tr("Identifier") << tr("Location");
+    int typeCol = 0, libCol = 1, idCol = 2, dirCol = 3, nameCol = 4;
+    headers << tr("Type") << tr("Library")
+            << tr("Identifier") << tr("Found in") << tr("Name");
     m_table->setHorizontalHeaderLabels(headers);
 
     int row = 0;