summaryrefslogtreecommitdiffstats
path: root/ksim/library/pluginloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksim/library/pluginloader.h')
-rw-r--r--ksim/library/pluginloader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksim/library/pluginloader.h b/ksim/library/pluginloader.h
index c0b332c..1dcd822 100644
--- a/ksim/library/pluginloader.h
+++ b/ksim/library/pluginloader.h
@@ -78,7 +78,7 @@ namespace KSim
/**
* loads a plugin, example:
* <pre>
- * KDesktopFile deskfile("/home/user/foo.desktop");
+ * TDEDesktopFile deskfile("/home/user/foo.desktop");
* KSim::PluginLoader::self().loadPlugin(deskFile);
* </pre>
* you can then use @ref pluginList() to access the plugin, view,
@@ -86,7 +86,7 @@ namespace KSim
* @param file is the desktop file of the lib
* @return true if the plugin is successfully loaded
*/
- bool loadPlugin(const KDesktopFile &file);
+ bool loadPlugin(const TDEDesktopFile &file);
/**
* unloads a loaded plugin and removes plugin entries from pluginList()
*/
@@ -174,7 +174,7 @@ namespace KSim
* Deletes the instance and cleans up after itself
*/
static void cleanup();
- ErrorCode createPlugin(const KDesktopFile &file);
+ ErrorCode createPlugin(const TDEDesktopFile &file);
class Private;
Private *d;