[Pkg-owncloud-commits] [owncloud-client] 11/211: Remove C++11ism that doesn't work with older GCCs
Sandro Knauß
hefee-guest at moszumanska.debian.org
Sat Oct 25 09:10:21 UTC 2014
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit 6c8eab734e06050a763fcf004fa50cd66f307830
Author: Daniel Molkentin <danimo at owncloud.com>
Date: Wed Oct 8 18:56:30 2014 +0200
Remove C++11ism that doesn't work with older GCCs
---
src/mirall/selectivesyncdialog.cpp | 2 +-
src/mirall/selectivesyncdialog.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mirall/selectivesyncdialog.cpp b/src/mirall/selectivesyncdialog.cpp
index 2c13f64..1edacb4 100644
--- a/src/mirall/selectivesyncdialog.cpp
+++ b/src/mirall/selectivesyncdialog.cpp
@@ -31,7 +31,7 @@
namespace Mirall {
SelectiveSyncTreeView::SelectiveSyncTreeView(Account *account, QWidget* parent)
- : QTreeWidget(parent), _account(account)
+ : QTreeWidget(parent), _inserting(false), _account(account)
{
connect(this, SIGNAL(itemExpanded(QTreeWidgetItem*)), this, SLOT(slotItemExpanded(QTreeWidgetItem*)));
connect(this, SIGNAL(itemChanged(QTreeWidgetItem*,int)), this, SLOT(slotItemChanged(QTreeWidgetItem*,int)));
diff --git a/src/mirall/selectivesyncdialog.h b/src/mirall/selectivesyncdialog.h
index 3a618e7..635421b 100644
--- a/src/mirall/selectivesyncdialog.h
+++ b/src/mirall/selectivesyncdialog.h
@@ -46,7 +46,7 @@ private:
QString _folderPath;
QString _rootName;
QStringList _oldBlackList;
- bool _inserting = false; // set to true when we are inserting new items on the list
+ bool _inserting; // set to true when we are inserting new items on the list
Account *_account;
};
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list