Skip to content
This repository has been archived by the owner on Jan 12, 2020. It is now read-only.

Commit

Permalink
[Fix] Recent Qt versions require explicit include for QAction and QSt…
Browse files Browse the repository at this point in the history
…yle classes
  • Loading branch information
mtl1979 committed Sep 18, 2019
1 parent 69488f0 commit 2766e3d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/Gui/AddressBook/NewAddressDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -17,6 +17,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.

#include <QStyle>

#include "NewAddressDialog.h"
#include "IAddressBookManager.h"
#include "IDonationManager.h"
Expand Down
4 changes: 3 additions & 1 deletion src/Gui/Common/ChangePasswordDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -17,6 +17,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.

#include <QStyle>

#include "ChangePasswordDialog.h"

#include "ui_ChangePasswordDialog.h"
Expand Down
4 changes: 3 additions & 1 deletion src/Gui/Common/NewPasswordDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -17,6 +17,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.

#include <QStyle>

#include "NewPasswordDialog.h"

#include "ui_NewPasswordDialog.h"
Expand Down
4 changes: 3 additions & 1 deletion src/Gui/NoWallet/NoWalletFrame.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -17,7 +17,9 @@
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.

#include <QAction>
#include <QFileInfo>
#include <QStyle>
#include <qtimer.h>
#include "NoWalletFrame.h"
#include "Settings/Settings.h"
Expand Down
3 changes: 2 additions & 1 deletion src/Gui/Send/SendFrame.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -18,6 +18,7 @@
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.

#include <QMetaMethod>
#include <QStyle>
#include <QUrl>
#include <QUrlQuery>

Expand Down
3 changes: 2 additions & 1 deletion src/Gui/Send/TransferFrame.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2015-2018, The Bytecoin developers
// Copyright (c) 2018, The PinkstarcoinV2 developers
// Copyright (c) 2018, The Bittorium developers
// Copyright (c) 2018-2019, The Bittorium developers
//
// This file is part of Bytecoin.
//
Expand All @@ -19,6 +19,7 @@

#include <QClipboard>
#include <QCompleter>
#include <QStyle>
#include <QWheelEvent>

#include "TransferFrame.h"
Expand Down

0 comments on commit 2766e3d

Please sign in to comment.