[Kst] branches/work/kst/1.5/kst/src/libkstmath
Andrew Walker
arwalker at sumusltd.com
Tue May 8 22:36:02 CEST 2007
SVN commit 662655 by arwalker:
BUG:143802 Display the readable name in the data manager for fits and filters
M +10 -2 kstcplugin.cpp
--- branches/work/kst/1.5/kst/src/libkstmath/kstcplugin.cpp #662654:662655
@@ -528,10 +528,18 @@
QString KstCPlugin::propertyString() const {
+ QString str;
+
if (!isValid()) {
- return i18n("Invalid plugin.");
+ str = i18n("Invalid plugin.");
+ } else {
+ str = plugin()->data()._readableName;
+ if (str.isEmpty()) {
+ str = plugin()->data()._name;
+ }
}
- return plugin()->data()._name;
+
+ return str;
}
More information about the Kst
mailing list