Skip to content

Commit

Permalink
ci: fix build when no QApplicationStatic
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 16, 2024
1 parent ace0a5e commit 9744cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/score/graphics/GraphicsItem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <QGuiApplication>

using item_help = ossia::hash_map<int, std::pair<QString, QUrl>>;
#if QT_VERSION > QT_VERSION_CHECK(6, 3, 0)
#if __has_include(<QApplicationStatic>)
#include <QApplicationStatic>
Q_APPLICATION_STATIC(item_help, g_itemHelpRegistry);
#else
Expand Down

0 comments on commit 9744cfc

Please sign in to comment.