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:45:51 +0900 |
commit | 6a7458cba9b900db03a9f295c2b5ba33960d17b0 (patch) | |
tree | e99bc8ec3d19c25b55d97c6ce24425dccde2d4cf /lib/plugin.h | |
parent | 6430ebd1408b3fd3e90ad2cae8d1d9b24dae0a47 (diff) | |
download | kpilot-r14.1.3.tar.gz kpilot-r14.1.3.zip |
Fix FTBFS described in issue #25r14.1.3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4d735aa1f67364f0637f4a3186c942faafb56221)
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 *); } /** |