summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-09 19:05:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-09 19:05:49 -0600
commitd6707f9679373588ae165f19d97d94580a8501fe (patch)
tree177299f18557aa2031dbf19bf434f963cea54f88
parentb2b96a5ed3e8deccde46148bbb1d50f69f585bd9 (diff)
downloadtdebase-d6707f9679373588ae165f19d97d94580a8501fe.tar.gz
tdebase-d6707f9679373588ae165f19d97d94580a8501fe.zip
Fix compilation with visibility enabled
-rw-r--r--kicker/kicker/interfaces/kickoff-search-plugin.h3
-rw-r--r--kicker/kicker/interfaces/kickoffsearchinterface.cpp2
-rw-r--r--kicker/kicker/interfaces/kickoffsearchinterface.h4
3 files changed, 6 insertions, 3 deletions
diff --git a/kicker/kicker/interfaces/kickoff-search-plugin.h b/kicker/kicker/interfaces/kickoff-search-plugin.h
index e91d079e7..e605e27c5 100644
--- a/kicker/kicker/interfaces/kickoff-search-plugin.h
+++ b/kicker/kicker/interfaces/kickoff-search-plugin.h
@@ -26,6 +26,7 @@
#include <tqobject.h>
#include <kurl.h>
#include <kservice.h>
+#include <kdemacros.h>
typedef enum {
ACTIONS = 0,
@@ -88,7 +89,7 @@ public:
namespace KickoffSearch {
- class Plugin : public TQObject
+ class KDE_EXPORT Plugin : public TQObject
{
Q_OBJECT
diff --git a/kicker/kicker/interfaces/kickoffsearchinterface.cpp b/kicker/kicker/interfaces/kickoffsearchinterface.cpp
index 6df9d0630..66b1add77 100644
--- a/kicker/kicker/interfaces/kickoffsearchinterface.cpp
+++ b/kicker/kicker/interfaces/kickoffsearchinterface.cpp
@@ -19,7 +19,7 @@
#include "kickoffsearchinterface.h"
-KickoffSearch::KickoffSearchInterface::KickoffSearchInterface( TQObject* parent, const char* name )
+KDE_EXPORT KickoffSearch::KickoffSearchInterface::KickoffSearchInterface( TQObject* parent, const char* name )
:TQObject( parent, name )
{
}
diff --git a/kicker/kicker/interfaces/kickoffsearchinterface.h b/kicker/kicker/interfaces/kickoffsearchinterface.h
index 91d28e7e6..485e9757c 100644
--- a/kicker/kicker/interfaces/kickoffsearchinterface.h
+++ b/kicker/kicker/interfaces/kickoffsearchinterface.h
@@ -22,11 +22,13 @@
#include <tqobject.h>
+#include <kdemacros.h>
+
class HitMenuItem;
namespace KickoffSearch
{
- class KickoffSearchInterface :public TQObject
+ class KDE_EXPORT KickoffSearchInterface :public TQObject
{
Q_OBJECT