Skip to content

Commit

Permalink
fix header includes
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Feb 27, 2019
1 parent 96545e8 commit 41ad05b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/qt/mintingfilterproxy.cpp
@@ -1,4 +1,4 @@
#include "mintingfilterproxy.h"
#include <mintingfilterproxy.h>

MintingFilterProxy::MintingFilterProxy(QObject * parent) :
QSortFilterProxyModel(parent)
Expand Down
19 changes: 11 additions & 8 deletions src/qt/mintingview.cpp
@@ -1,11 +1,14 @@
#include "mintingview.h"
#include "mintingfilterproxy.h"
#include "transactionrecord.h"
#include "mintingtablemodel.h"
#include "walletmodel.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "csvmodelwriter.h"
// Copyright (c) 2012-2019 The Peercoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <mintingview.h>
#include <mintingfilterproxy.h>
#include <transactionrecord.h>
#include <mintingtablemodel.h>
#include <walletmodel.h>
#include <guiconstants.h>
#include <guiutil.h>
#include <csvmodelwriter.h>

#include <QComboBox>
#include <QHBoxLayout>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/mintingview.h
Expand Up @@ -6,7 +6,7 @@

#include <QWidget>
#include <QComboBox>
#include "mintingfilterproxy.h"
#include <mintingfilterproxy.h>

class WalletModel;

Expand Down
6 changes: 3 additions & 3 deletions src/test/blockchain_tests.cpp
@@ -1,9 +1,9 @@
#include <boost/test/unit_test.hpp>

#include "stdlib.h"
#include <stdlib.h>

#include "rpc/blockchain.cpp"
#include "test/test_bitcoin.h"
#include <rpc/blockchain.h>
#include <test/test_bitcoin.h>

/* Equality between doubles is imprecise. Comparison should be done
* with a small threshold of tolerance, rather than exact equality.
Expand Down
2 changes: 1 addition & 1 deletion src/test/torcontrol_tests.cpp
Expand Up @@ -3,7 +3,7 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
#include <test/test_bitcoin.h>
#include <torcontrol.cpp>
#include <torcontrol.h>

#include <boost/test/unit_test.hpp>

Expand Down

0 comments on commit 41ad05b

Please sign in to comment.