svn commit: r470042 - in head/databases/pgmodeler: . files

Raphael Kubo da Costa rakuco at FreeBSD.org
Tue May 15 18:20:51 UTC 2018


Author: rakuco
Date: Tue May 15 18:20:49 2018
New Revision: 470042
URL: https://svnweb.freebsd.org/changeset/ports/470042

Log:
  Add an upstream patch to fix the build with Qt 5.10.
  
      src/ui_sqlexecutionwidget.h:186:34: error: no viable conversion from 'QLatin1String' to 'const QKeySequence'
              snippets_tb->setShortcut(QLatin1String("Alt+X"));
                                       ^~~~~~~~~~~~~~~~~~~~~~
  
  PR:		228213

Added:
  head/databases/pgmodeler/files/patch-git_309be58b   (contents, props changed)
Modified:
  head/databases/pgmodeler/Makefile

Modified: head/databases/pgmodeler/Makefile
==============================================================================
--- head/databases/pgmodeler/Makefile	Tue May 15 17:50:37 2018	(r470041)
+++ head/databases/pgmodeler/Makefile	Tue May 15 18:20:49 2018	(r470042)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pgmodeler
 PORTVERSION=	0.9.0
-PORTREVISION=	1
+PORTREVISION=	2
 DISTVERSIONPREFIX=	v
 CATEGORIES=	databases
 

Added: head/databases/pgmodeler/files/patch-git_309be58b
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pgmodeler/files/patch-git_309be58b	Tue May 15 18:20:49 2018	(r470042)
@@ -0,0 +1,39 @@
+From 309be58bbb2b47ca530eecdaf38f2965e35da4f1 Mon Sep 17 00:00:00 2001
+From: "Raphael A. Silva" <rkhaotix at gmail.com>
+Date: Mon, 26 Feb 2018 17:27:09 -0300
+Subject: [PATCH] Fixed a problem with sqlexecutionwidget.ui that is not
+ building properly in Qt 5.10
+
+---
+ libpgmodeler_ui/ui/sqlexecutionwidget.ui | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+--- libpgmodeler_ui/ui/sqlexecutionwidget.ui
++++ libpgmodeler_ui/ui/sqlexecutionwidget.ui
+@@ -199,7 +199,7 @@
+         </size>
+        </property>
+        <property name="shortcut">
+-        <string>Ctrl+S</string>
++        <string notr="true"/>
+        </property>
+        <property name="checkable">
+         <bool>true</bool>
+@@ -316,7 +316,7 @@
+         </size>
+        </property>
+        <property name="shortcut">
+-        <string notr="true">Alt+X</string>
++        <string>Alt+T</string>
+        </property>
+        <property name="checkable">
+         <bool>false</bool>
+@@ -360,7 +360,7 @@
+         </size>
+        </property>
+        <property name="shortcut">
+-        <string notr="true">Alt+X</string>
++        <string>Alt+X</string>
+        </property>
+        <property name="checkable">
+         <bool>false</bool>


More information about the svn-ports-all mailing list