1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-25 04:13:10 +01:00

i don't know why my Qt no longer works with module-wide includes... but they are bad anyway. Include what we need.

This commit is contained in:
Leo Franchi 2011-02-15 18:17:33 -05:00
parent 4af60befcd
commit 8d91fb6f99
4 changed files with 15 additions and 1 deletions

View File

@ -26,7 +26,9 @@
#ifndef QJDNS_H
#define QJDNS_H
#include <QtCore>
#include <QObject>
#include <QHostAddress>
#include <QTime>
#include <QtNetwork>
class QJDns : public QObject

View File

@ -25,6 +25,12 @@
#include "qjdns_sock.h"
#include "jdns.h"
#include <QTimer>
#include <QUdpSocket>
#include <QPointer>
#include <QStringList>
#include <QMetaEnum>
#include <time.h>
// safeobj stuff, from qca

View File

@ -37,6 +37,7 @@
#include "jdns_export.h"
#include "jdnsshared_helpers.h"
// safeobj stuff, from qca
Q_GLOBAL_STATIC(QMutex, jdnsshared_mutex)

View File

@ -36,6 +36,11 @@
#include "jdnsshared.h"
#include "jdns_export.h"
#include <QTimer>
#include <QMutex>
#include <QWaitCondition>
#include <QThread>
#include <QStringList>
// safeobj stuff, from qca
class JDNS_EXPORT JDnsSharedSafeTimer : public QObject