diff options
| author | Tobias Markmann <tm@ayena.de> | 2018-06-21 11:04:56 (GMT) |
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2018-06-21 11:26:52 (GMT) |
| commit | 1d18148c86377787a8c77042b12ea66f20cb2ca9 (patch) | |
| tree | 13315c04e3fb152071b5d5232a7d1458e7957c56 | |
| parent | 70e58211a49782e449eacbef48bd076d24fed57e (diff) | |
| download | swift-1d18148c86377787a8c77042b12ea66f20cb2ca9.zip swift-1d18148c86377787a8c77042b12ea66f20cb2ca9.tar.bz2 | |
Add missing include for QAbstractItemModel
This fixes building Swift with Qt 5.11.
Test-Information:
Builds and tests pass on macOS 10.13.5 with Qt 5.11.0.
Change-Id: I1be2cd081d8a520ec38ab7cca5ada0d7fc39b777
| -rw-r--r-- | Swift/QtUI/UserSearch/QtUserSearchWindow.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/QtUI/UserSearch/QtUserSearchWindow.h b/Swift/QtUI/UserSearch/QtUserSearchWindow.h index 0714ac1..fe536ab 100644 --- a/Swift/QtUI/UserSearch/QtUserSearchWindow.h +++ b/Swift/QtUI/UserSearch/QtUserSearchWindow.h @@ -1,15 +1,16 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2018 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <set> +#include <QAbstractItemModel> #include <QWizard> #include <Swiften/Base/Override.h> #include <Swift/Controllers/UIInterfaces/UserSearchWindow.h> |
Swift