svn commit: r478780 - head/graphics/kphotoalbum/files

Tobias C. Berner tcberner at FreeBSD.org
Sun Sep 2 10:47:14 UTC 2018


Author: tcberner
Date: Sun Sep  2 10:47:13 2018
New Revision: 478780
URL: https://svnweb.freebsd.org/changeset/ports/478780

Log:
  graphics/kphotoalbum: fix build with Qt 5.11
  
  PR:		230884
  Obtained from:	upstream

Added:
  head/graphics/kphotoalbum/files/
  head/graphics/kphotoalbum/files/patch-git_47f4c00   (contents, props changed)

Added: head/graphics/kphotoalbum/files/patch-git_47f4c00
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/kphotoalbum/files/patch-git_47f4c00	Sun Sep  2 10:47:13 2018	(r478780)
@@ -0,0 +1,27 @@
+From 47f4c00adaa442cd03b02d44517b5503718f2813 Mon Sep 17 00:00:00 2001
+From: Christophe Giboudeaux <christophe at krop.fr>
+Date: Tue, 12 Jun 2018 22:52:06 +0200
+Subject: [PATCH] Fix build with Qt 5.11.
+
+Summary: 'id' is an int, it doesn't need qPrintable.
+
+Reviewers: johanneszarl
+
+Differential Revision: https://phabricator.kde.org/D13329
+---
+ RemoteControl/RemoteConnection.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/RemoteControl/RemoteConnection.cpp b/RemoteControl/RemoteConnection.cpp
+index 1dacb727..8bc18d00 100644
+--- RemoteControl/RemoteConnection.cpp
++++ RemoteControl/RemoteConnection.cpp
+@@ -105,7 +105,7 @@ void RemoteConnection::dataReceived()
+             std::unique_ptr<RemoteCommand> command = RemoteCommand::create(static_cast<CommandType>(id));
+             command->decode(stream);
+             protocolDebug() << qPrintable(QTime::currentTime().toString(QString::fromUtf8("hh:mm:ss.zzz")))
+-                               << ": Received " << qPrintable(id);
++                               << ": Received " << id;
+ 
+             emit gotCommand(*command);
+         }


More information about the svn-ports-head mailing list