diff options
Diffstat (limited to 'noatun-plugins/alarm/wakeup.cpp')
-rw-r--r-- | noatun-plugins/alarm/wakeup.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/noatun-plugins/alarm/wakeup.cpp b/noatun-plugins/alarm/wakeup.cpp index 137a3aa..fabec0a 100644 --- a/noatun-plugins/alarm/wakeup.cpp +++ b/noatun-plugins/alarm/wakeup.cpp @@ -39,10 +39,13 @@ #include "kminutespinbox.h" #include "kpercentspinbox.h" -extern "C" Plugin *create_plugin() +extern "C" { - TDEGlobal::locale()->insertCatalogue("wakeup"); - return new Wakeup(); + KDE_EXPORT Plugin* create_plugin() + { + TDEGlobal::locale()->insertCatalogue("wakeup"); + return new Wakeup(); + } } Wakeup *Wakeup::wakeme = 0; |