Addressbook: updated references to bitmonero

This commit is contained in:
Jaquee
2016-12-14 23:28:20 +01:00
parent a344f17cd1
commit 0e5329ab6c
4 changed files with 10 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
#include "AddressBook.h"
#include <QDebug>
AddressBook::AddressBook(Bitmonero::AddressBook *abImpl,QObject *parent)
AddressBook::AddressBook(Monero::AddressBook *abImpl,QObject *parent)
: QObject(parent), m_addressBookImpl(abImpl)
{
qDebug(__FUNCTION__);
@@ -18,7 +18,7 @@ int AddressBook::errorCode() const
return m_addressBookImpl->errorCode();
}
QList<Bitmonero::AddressBookRow*> AddressBook::getAll(bool update) const
QList<Monero::AddressBookRow*> AddressBook::getAll(bool update) const
{
qDebug(__FUNCTION__);
@@ -38,7 +38,7 @@ QList<Bitmonero::AddressBookRow*> AddressBook::getAll(bool update) const
}
Bitmonero::AddressBookRow * AddressBook::getRow(int index) const
Monero::AddressBookRow * AddressBook::getRow(int index) const
{
return m_rows.at(index);
}