[X2Go-Commits] [x2goclient] 184/219: src/x2goutils.cpp: fix compile error.
git-admin at x2go.org
git-admin at x2go.org
Thu Sep 22 04:37:28 CEST 2016
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch bugfix/osx
in repository x2goclient.
commit 68e6d79a18584db5252fd361684f91367c3c1f94
Author: Mihai Moldovan <ionic at ionic.de>
Date: Wed Jun 22 02:28:40 2016 +0200
src/x2goutils.cpp: fix compile error.
---
debian/changelog | 1 +
src/x2goutils.cpp | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index cd12428..959a8b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -313,6 +313,7 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium
- src/pulsemanager.cpp: add comments to Qt 4 code part.
- src/pulsemanager.cpp: add reminder for Linux-implementation in
play_startup_sound ().
+ - src/x2goutils.cpp: fix compile error.
-- X2Go Release Manager <git-admin at x2go.org> Mon, 19 Sep 2016 09:07:07 +0200
diff --git a/src/x2goutils.cpp b/src/x2goutils.cpp
index 16ed06e..eebd05c 100644
--- a/src/x2goutils.cpp
+++ b/src/x2goutils.cpp
@@ -297,7 +297,7 @@ QString find_binary (const QString &path, const QString &binary_name) {
QStringList path_list = tmp_path.split (":");
- for (QStringList const_it = path_list.constBegin (); const_it != path_list.constEnd (); ++const_it) {
+ for (QStringList::const_iterator const_it = path_list.constBegin (); const_it != path_list.constEnd (); ++const_it) {
cur_path = *const_it;
if (cur_path.isEmpty ()) {
--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
More information about the x2go-commits
mailing list