diff options
author | Slávek Banko <[email protected]> | 2019-01-03 03:40:09 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-03 03:40:09 +0100 |
commit | c2446367dbf7826bdd45ff8a943b408c1b7097d8 (patch) | |
tree | 6176c266f229071355f7d3e6dd97892a5d2ae384 /lib/actions.h | |
parent | bc8b49848ad3297f22ab580387aa061b199954b9 (diff) | |
download | kpilot-c2446367dbf7826bdd45ff8a943b408c1b7097d8.tar.gz kpilot-c2446367dbf7826bdd45ff8a943b408c1b7097d8.zip |
Fix export of symbols to work properly with hidden visibility.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'lib/actions.h')
-rw-r--r-- | lib/actions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/actions.h b/lib/actions.h index 35496d0..a57a6e9 100644 --- a/lib/actions.h +++ b/lib/actions.h @@ -42,7 +42,7 @@ * It is added automatically to a ActionQueue by queueInit() in order * to inform the user of the sync. */ -KDE_EXPORT class WelcomeAction : public SyncAction +class KDE_EXPORT WelcomeAction : public SyncAction { public: /** Constructor. */ @@ -58,7 +58,7 @@ protected: * in cases when the hotsync starts while KPilot is busy configuring * something and can't be interrupted. */ -KDE_EXPORT class SorryAction : public SyncAction +class KDE_EXPORT SorryAction : public SyncAction { public: /** @@ -84,7 +84,7 @@ protected: * device that the HotSync is over, it should be the last * action executed. */ -KDE_EXPORT class CleanupAction : public SyncAction +class KDE_EXPORT CleanupAction : public SyncAction { public: /** Constructor. */ @@ -100,7 +100,7 @@ protected: * and not do anything spectacular. It lists all the databases * on the handheld in the sync log. */ -KDE_EXPORT class TestLink : public SyncAction +class KDE_EXPORT TestLink : public SyncAction { public: /** Constructor. */ |