1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

win32: some compilation/linking fixes, still does not build

This commit is contained in:
Dominik Schmidt
2011-05-14 01:07:03 +02:00
parent 43194e777a
commit 925485d916
5 changed files with 12 additions and 5 deletions

View File

@@ -26,7 +26,7 @@
#define PADDING 4 #define PADDING 4
class QPainter; class QPainter;
class DLLEXPORT ConfigDelegateBase : public QStyledItemDelegate class Q_DECL_EXPORT ConfigDelegateBase : public QStyledItemDelegate
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -6,8 +6,9 @@
#include <QObject> #include <QObject>
#include <QDir> #include <QDir>
#include "../sipdllmacro.h"
class AvatarManager : public QObject class SIPDLLEXPORT AvatarManager : public QObject
{ {
Q_OBJECT Q_OBJECT

View File

@@ -5,8 +5,10 @@
#define TOMAHAWK_SIP_MESSAGE_NS QLatin1String("http://www.tomhawk-player.org/sip/transports") #define TOMAHAWK_SIP_MESSAGE_NS QLatin1String("http://www.tomhawk-player.org/sip/transports")
#include "../sipdllmacro.h"
class TomahawkSipMessagePrivate; class TomahawkSipMessagePrivate;
class TomahawkSipMessage : public Jreen::StanzaExtension class SIPDLLEXPORT TomahawkSipMessage : public Jreen::StanzaExtension
{ {
J_EXTENSION(TomahawkSipMessage, "") J_EXTENSION(TomahawkSipMessage, "")
Q_DECLARE_PRIVATE(TomahawkSipMessage) Q_DECLARE_PRIVATE(TomahawkSipMessage)

View File

@@ -21,7 +21,9 @@
#include <jreen/stanzaextension.h> #include <jreen/stanzaextension.h>
class TomahawkSipMessageFactory : public Jreen::StanzaExtensionFactory<TomahawkSipMessage> #include "../sipdllmacro.h"
class SIPDLLEXPORT TomahawkSipMessageFactory : public Jreen::StanzaExtensionFactory<TomahawkSipMessage>
{ {
public: public:
TomahawkSipMessageFactory(); TomahawkSipMessageFactory();

View File

@@ -32,7 +32,9 @@ namespace Ui {
class XmlConsole; class XmlConsole;
} }
class XmlConsole : public QWidget, public Jreen::XmlStreamHandler #include "../sipdllmacro.h"
class SIPDLLEXPORT XmlConsole : public QWidget, public Jreen::XmlStreamHandler
{ {
Q_OBJECT Q_OBJECT