From ef0c24933d2ac6754368445057c6754f1ab555a3 Mon Sep 17 00:00:00 2001 From: Vikram Rajkumar Date: Tue, 21 Jul 2015 12:13:35 -0400 Subject: [PATCH 1/2] Revert "Update README.md" --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5f48e2dd..7ced79bb 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,6 @@ For Ubuntu 14.04 LTS users, see this link first: and then proceed with: - sudo apt-get update - sudo apt-get install autoconf autotools-dev build-essential cmake g++ git libboost-all-dev libboost-dev libbz2-dev libdb++-dev libdb-dev libicu-dev libreadline-dev libssl-dev libtool openssl python-dev uuid-dev git clone https://github.com/cryptonomex/graphene.git cd graphene git submodule update --init --recursive From 2389d2f352bc2fae2b12530583c7a9d48b5d634a Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Tue, 21 Jul 2015 14:26:47 -0400 Subject: [PATCH 2/2] [GUI] Fix build --- programs/light_client/ClientDataModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/light_client/ClientDataModel.cpp b/programs/light_client/ClientDataModel.cpp index 4db9a153..309fcade 100644 --- a/programs/light_client/ClientDataModel.cpp +++ b/programs/light_client/ClientDataModel.cpp @@ -176,7 +176,7 @@ void ChainDataModel::getAccountImpl(QString accountIdentifier, Account* const * (*itr)->deleteLater(); m_accounts.erase(itr); } else { - m_accounts.modify(itr, [=](Account* a){ + m_accounts.modify(itr, [this,&accountPackage](Account* a){ a->setProperty("id", ObjectId(accountPackage->account.id.instance())); a->setProperty("name", QString::fromStdString(accountPackage->account.name));