Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Sep 2018 11:30:19 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478854 - head/games/solarus-quest-editor/files
Message-ID:  <201809031130.w83BUJMW083004@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhale
Date: Mon Sep  3 11:30:19 2018
New Revision: 478854
URL: https://svnweb.freebsd.org/changeset/ports/478854

Log:
  Fix build with Qt 5.11
  
  PR:		230884
  Obtained from:	upstream

Added:
  head/games/solarus-quest-editor/files/patch-qt511   (contents, props changed)

Added: head/games/solarus-quest-editor/files/patch-qt511
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/solarus-quest-editor/files/patch-qt511	Mon Sep  3 11:30:19 2018	(r478854)
@@ -0,0 +1,36 @@
+Fix build with Qt 5.11
+Fixed upstream:
+https://gitlab.com/solarus-games/solarus-quest-editor/commit/8f308463030c18cd4f7c8a6052028fff3b7ca35a
+https://gitlab.com/solarus-games/solarus-quest-editor/commit/f285beab62594f73e57190c49848c848487214cf
+
+--- include/widgets/map_view.h.orig	2017-04-03 11:37:49 UTC
++++ include/widgets/map_view.h
+@@ -21,6 +21,8 @@
+ #include <QGraphicsView>
+ #include <QPointer>
+ 
++class QActionGroup;
++
+ namespace SolarusEditor {
+ 
+ class MapModel;
+--- src/widgets/map_view.cpp.orig	2017-04-03 11:37:49 UTC
++++ src/widgets/map_view.cpp
+@@ -29,6 +29,7 @@
+ #include "tileset_model.h"
+ #include "view_settings.h"
+ #include <QAction>
++#include <QActionGroup>
+ #include <QApplication>
+ #include <QClipboard>
+ #include <QDebug>
+--- src/widgets/text_editor.cpp.orig	2017-04-03 11:37:49 UTC
++++ src/widgets/text_editor.cpp
+@@ -26,6 +26,7 @@
+ #include <QList>
+ #include <QPlainTextEdit>
+ #include <QScrollBar>
++#include <QAction>
+ #include <QTextStream>
+ 
+ namespace SolarusEditor {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809031130.w83BUJMW083004>