Merge pull request #1000

77bcdf9 replace wallet/wallet2_api.h with wallet/api/wallet2_api.h to compile
This commit is contained in:
luigi1111
2017-12-10 16:06:46 -06:00
13 changed files with 13 additions and 13 deletions

View File

@@ -50,7 +50,7 @@
#include "model/TransactionHistorySortFilterModel.h"
#include "AddressBook.h"
#include "model/AddressBookModel.h"
#include "wallet/wallet2_api.h"
#include "wallet/api/wallet2_api.h"
#include "MainApp.h"
// IOS exclusions

2
monero

Submodule monero updated: ab594cfee9...8512a83572

View File

@@ -1,7 +1,7 @@
#ifndef ADDRESSBOOK_H
#define ADDRESSBOOK_H
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
#include <QObject>
#include <QList>
#include <QDateTime>

View File

@@ -3,7 +3,7 @@
#include <QObject>
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
//namespace Monero {
//class PendingTransaction;

View File

@@ -1,6 +1,6 @@
#include "TransactionHistory.h"
#include "TransactionInfo.h"
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
#include <QDebug>

View File

@@ -1,7 +1,7 @@
#ifndef TRANSACTIONINFO_H
#define TRANSACTIONINFO_H
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
#include <QObject>
#include <QDateTime>

View File

@@ -1,7 +1,7 @@
#ifndef TRANSFER_H
#define TRANSFER_H
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
#include <QObject>
class Transfer : public QObject

View File

@@ -3,7 +3,7 @@
#include <QObject>
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
class UnsignedTransaction : public QObject
{

View File

@@ -6,7 +6,7 @@
#include "model/TransactionHistoryModel.h"
#include "model/TransactionHistorySortFilterModel.h"
#include "model/AddressBookModel.h"
#include "wallet/wallet2_api.h"
#include "wallet/api/wallet2_api.h"
#include <QFile>
#include <QDir>

View File

@@ -6,7 +6,7 @@
#include <QMutex>
#include <QtConcurrent/QtConcurrent>
#include "wallet/wallet2_api.h" // we need to have an access to the Monero::Wallet::Status enum here;
#include "wallet/api/wallet2_api.h" // we need to have an access to the Monero::Wallet::Status enum here;
#include "PendingTransaction.h" // we need to have an access to the PendingTransaction::Priority enum here;
#include "UnsignedTransaction.h"

View File

@@ -1,6 +1,6 @@
#include "WalletManager.h"
#include "Wallet.h"
#include "wallet/wallet2_api.h"
#include "wallet/api/wallet2_api.h"
#include "zxcvbn-c/zxcvbn.h"
#include "QRCodeImageProvider.h"
#include <QFile>

View File

@@ -3,7 +3,7 @@
#include <QObject>
#include <QUrl>
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
#include <QMutex>
#include <QPointer>

View File

@@ -2,7 +2,7 @@
#include "AddressBook.h"
#include <QDebug>
#include <QHash>
#include <wallet/wallet2_api.h>
#include <wallet/api/wallet2_api.h>
AddressBookModel::AddressBookModel(QObject *parent, AddressBook *addressBook)
: QAbstractListModel(parent) , m_addressBook(addressBook)