Make AlsaDeviceListModel compile on older Qt

Older versions of Qt must not include the QPair declaration in
QAbstractListModel.  This fix simply includes QPair as well.
This commit is contained in:
Paul Giblock
2009-11-03 15:37:04 -05:00
parent c9e78cb6aa
commit 66f0ca60e2

View File

@@ -30,7 +30,8 @@
#ifdef LMMS_HAVE_ALSA
#include <alsa/asoundlib.h>
#include "QAbstractListModel"
#include <QAbstractListModel>
#include <QPair>
class AlsaDeviceListModel : public QAbstractListModel