Skip to content

Commit

Permalink
Updated V0.2, Fixed OSX Compile
Browse files Browse the repository at this point in the history
  • Loading branch information
godlovedamian committed Jan 13, 2019
1 parent 2ea3433 commit 9870cdb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/clientversion.h
Expand Up @@ -10,8 +10,8 @@

// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 6
#define CLIENT_VERSION_MINOR 2
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0

// Set to true for release, false for prerelease or test build
Expand All @@ -21,8 +21,8 @@

// ppcoin version - intended for display purpose ONLY
#define BITCOINAIR_VERSION_MAJOR 0
#define BITCOINAIR_VERSION_MINOR 6
#define BITCOINAIR_VERSION_REVISION 4
#define BITCOINAIR_VERSION_MINOR 2
#define BITCOINAIR_VERSION_REVISION 0
#define BITCOINAIR_VERSION_BUILD 0

// Copyright year (2009-this)
Expand Down
8 changes: 4 additions & 4 deletions src/qt/addressbookpage.cpp
Expand Up @@ -370,10 +370,10 @@ void AddressBookPage::on_showQRCode_clicked()
QString address = index.data().toString();
QString label = index.sibling(index.row(), 0).data(Qt::EditRole).toString();

QRCodeDialog *dialog = new QRCodeDialog(address, label, tab == ReceivingTab, this);
dialog->setModel(optionsModel);
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->show();
//QRCodeDialog *dialog = new QRCodeDialog(address, label, tab == ReceivingTab, this);
//dialog->setModel(optionsModel);
//dialog->setAttribute(Qt::WA_DeleteOnClose);
//dialog->show();
}
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion src/qt/qrcodedialog.cpp
@@ -1,5 +1,5 @@
#include "qrcodedialog.h"
#include "ui_qrcodedialog.h"
//#include "ui_qrcodedialog.h"

#include "bitcoinunits.h"
#include "guiconstants.h"
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Expand Up @@ -43,7 +43,7 @@ const std::string CLIENT_NAME("Satoshi");
"v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-g" commit

#define BUILD_DESC_FROM_UNKNOWN(maj,min,rev,build) \
"v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-unk"
"v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) /*"-unk"*/

#ifndef BUILD_DESC
# ifdef GIT_COMMIT_ID
Expand Down

0 comments on commit 9870cdb

Please sign in to comment.