1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-14 15:46:00 +01:00

replace wallet/wallet2_api.h with wallet/api/wallet2_api.h to compile

This commit is contained in:
User 2017-12-08 02:29:28 -05:00
parent d9d2050f29
commit 77bcdf9434
No known key found for this signature in database
GPG Key ID: 7888CBB873E7565E
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

@ -1 +1 @@
Subproject commit ab594cfee94dff87bb7039724563f6177a892b8b
Subproject commit 8512a83572094f96aff95e02db359914a37c3c71

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)