From 66f0ca60e239436a2b5e2f2dbf7a0e1e3b1e64e4 Mon Sep 17 00:00:00 2001 From: Paul Giblock Date: Tue, 3 Nov 2009 15:37:04 -0500 Subject: [PATCH] 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. --- include/AlsaDeviceListModel.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/AlsaDeviceListModel.h b/include/AlsaDeviceListModel.h index 457ab587a..3a72ca657 100644 --- a/include/AlsaDeviceListModel.h +++ b/include/AlsaDeviceListModel.h @@ -30,7 +30,8 @@ #ifdef LMMS_HAVE_ALSA #include -#include "QAbstractListModel" +#include +#include class AlsaDeviceListModel : public QAbstractListModel