[Kst] kdeextragear-2/kst/kst
George Staikos
staikos at kde.org
Thu May 22 03:57:13 CEST 2003
CVS commit by staikos:
move "Loaded" over one column. It looks better to select the plugin name, not
it's loaded state pixmap.
M +2 -2 pluginmanager.ui 1.8
M +3 -3 pluginmanager.ui.h 1.11
--- kdeextragear-2/kst/kst/pluginmanager.ui #1.7:1.8
@@ -23,5 +23,5 @@
<column>
<property name="text">
- <string>Loaded</string>
+ <string>Name</string>
</property>
<property name="clickable">
@@ -34,5 +34,5 @@
<column>
<property name="text">
- <string>Name</string>
+ <string>Loaded</string>
</property>
<property name="clickable">
--- kdeextragear-2/kst/kst/pluginmanager.ui.h #1.10:1.11
@@ -114,13 +114,13 @@ void PluginManager::reloadList()
for (it = pluginList.begin(); it != pluginList.end(); ++it) {
QListViewItem *i = new QListViewItem(_pluginList,
- "",
it.data()._name,
+ "",
it.data()._description,
it.data()._version,
it.data()._author);
if (loadedPluginList.contains(it.data()._name)) {
- i->setPixmap(0, locate("data", "kst/pics/yes.png"));
+ i->setPixmap(1, locate("data", "kst/pics/yes.png"));
/*} else { // Don't do this for now. It looks better without it.
- i->setPixmap(0, locate("data", "kst/pics/no.png"));*/
+ i->setPixmap(1, locate("data", "kst/pics/no.png"));*/
}
}
More information about the Kst
mailing list