better names

svn path=/trunk/KDE/kdelibs/; revision=923357
This commit is contained in:
Aaron J. Seigo 2009-02-08 16:53:54 +00:00
parent 6c5c5021d6
commit ac708dc8d3

View File

@ -122,13 +122,13 @@ PackageStructure::Ptr PackageStructure::load(const QString &packageFormat)
return structure;
}
if (packageFormat == "plasmoid") {
if (packageFormat == "Plasma/Applet") {
structure = defaultPackageStructure(AppletComponent);
} else if (packageFormat == "dataengine") {
} else if (packageFormat == "Plasma/DataEngine") {
structure = defaultPackageStructure(DataEngineComponent);
} else if (packageFormat == "runner") {
} else if (packageFormat == "Plasma/Runner") {
structure = defaultPackageStructure(RunnerComponent);
} else if (packageFormat == "theme") {
} else if (packageFormat == "Plasma/Theme") {
structure = Theme::packageStructure();
}