Fixes for Qt 5.4 compat
This commit is contained in:
parent
ee48fddd5e
commit
d4cd82b521
3 changed files with 2 additions and 3 deletions
|
@ -146,8 +146,6 @@ void AddOnsController::setAircraftPaths(QStringList aircraftPaths)
|
|||
if (m_aircraftPaths == aircraftPaths)
|
||||
return;
|
||||
|
||||
qInfo() << Q_FUNC_INFO << aircraftPaths << ", was " << m_aircraftPaths;
|
||||
|
||||
m_aircraftPaths = aircraftPaths;
|
||||
emit aircraftPathsChanged(m_aircraftPaths);
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define ADDONSCONTROLLER_HXX
|
||||
|
||||
#include <QObject>
|
||||
#include <QStringList>
|
||||
|
||||
class CatalogListModel;
|
||||
class LauncherMainWindow;
|
||||
|
|
|
@ -90,7 +90,7 @@ public:
|
|||
NoAddInProgress
|
||||
};
|
||||
|
||||
Q_ENUM(CatalogStatus)
|
||||
Q_ENUMS(CatalogStatus)
|
||||
|
||||
void onCatalogStatusChanged(simgear::pkg::Catalog *cat);
|
||||
|
||||
|
|
Loading…
Reference in a new issue