Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Sep 2018 10:47:13 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478780 - head/graphics/kphotoalbum/files
Message-ID:  <201809021047.w82AlDM9010656@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);
+         }



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