diff options
Diffstat (limited to 'lib/plugin.h')
-rw-r--r-- | lib/plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/plugin.h b/lib/plugin.h index 9187212..2a452a0 100644 --- a/lib/plugin.h +++ b/lib/plugin.h @@ -388,7 +388,7 @@ protected: } ; /** A namespace containing only static helper methods. */ -namespace PluginUtility TDE_EXPORT +namespace PluginUtility { /** Searches the argument list for --foo=bar and returns bar, TQString() if not found. * Don't include the -- in the argname. */ @@ -402,14 +402,14 @@ namespace PluginUtility TDE_EXPORT * The current approach is to ask the DCOP server if the application * has registered. */ - bool isRunning(const TQCString &appName); + TDE_EXPORT bool isRunning(const TQCString &appName); /** * Check a given library for its version, returning 0 if no * version symbol is found. */ - unsigned long pluginVersion(const KLibrary *); - TQString pluginVersionString(const KLibrary *); + TDE_EXPORT unsigned long pluginVersion(const KLibrary *); + TDE_EXPORT TQString pluginVersionString(const KLibrary *); } /** |