diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-13 18:29:37 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-14 19:44:05 +0900 |
| commit | 4d735aa1f67364f0637f4a3186c942faafb56221 (patch) | |
| tree | a075bdbd80d83191410f435b30fd1ac6ed9e6b30 /lib/plugin.h | |
| parent | caea47379ccebb726b1f7dd426d89f5dd3d72cb2 (diff) | |
| download | kpilot-4d735aa1f67364f0637f4a3186c942faafb56221.tar.gz kpilot-4d735aa1f67364f0637f4a3186c942faafb56221.zip | |
Fix FTBFS described in issue #25
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 *); } /** |
