support qt4 and qt5; refs #40

This commit is contained in:
Marc Wäckerlin
2014-05-06 07:10:38 +00:00
parent a0208dabec
commit 165a03bb29

View File

@@ -9,7 +9,11 @@
#define __PROXYAUTH_HXX__
#include <proxyface/ui_proxyauth.hxx>
#include <QDialog>
#if QT_VERSION >= 0x050000
#include <QtWidgets/QDialog>
#else
#include <QtGui/QDialog>
#endif
class ProxyAuth: public QDialog, public Ui::ProxyAuth {
Q_OBJECT