From 6cee45ca70a66bc3f533b3678c4fbc440f812287 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 16 Mar 2011 16:35:37 +0100 Subject: [PATCH] * Fixed DLLEXPORT for FuncTimeout. --- src/libtomahawk/functimeout.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/functimeout.h b/src/libtomahawk/functimeout.h index 5da67a526..39bad1950 100644 --- a/src/libtomahawk/functimeout.h +++ b/src/libtomahawk/functimeout.h @@ -8,6 +8,8 @@ #include "boost/function.hpp" #include "boost/bind.hpp" +#include "dllmacro.h" + /* I want to do: QTimer::singleShot(1000, this, SLOT(doSomething(x))); @@ -18,7 +20,7 @@ namespace Tomahawk { -class FuncTimeout : public QObject +class DLLEXPORT FuncTimeout : public QObject { Q_OBJECT