Browse Source

qt: add license header to source files

Closes #839
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
e592d43f51
  1. 4
      src/qt/aboutdialog.cpp
  2. 4
      src/qt/aboutdialog.h
  3. 4
      src/qt/addressbookpage.cpp
  4. 4
      src/qt/addressbookpage.h
  5. 4
      src/qt/addresstablemodel.cpp
  6. 4
      src/qt/addresstablemodel.h
  7. 4
      src/qt/askpassphrasedialog.cpp
  8. 4
      src/qt/askpassphrasedialog.h
  9. 6
      src/qt/bitcoin.cpp
  10. 4
      src/qt/bitcoinaddressvalidator.cpp
  11. 4
      src/qt/bitcoinaddressvalidator.h
  12. 4
      src/qt/bitcoinamountfield.cpp
  13. 4
      src/qt/bitcoinamountfield.h
  14. 9
      src/qt/bitcoingui.cpp
  15. 4
      src/qt/bitcoingui.h
  16. 4
      src/qt/bitcoinunits.cpp
  17. 4
      src/qt/bitcoinunits.h
  18. 4
      src/qt/clientmodel.cpp
  19. 4
      src/qt/clientmodel.h
  20. 4
      src/qt/csvmodelwriter.cpp
  21. 4
      src/qt/csvmodelwriter.h
  22. 4
      src/qt/editaddressdialog.cpp
  23. 4
      src/qt/editaddressdialog.h
  24. 4
      src/qt/guiconstants.h
  25. 4
      src/qt/guiutil.cpp
  26. 4
      src/qt/guiutil.h
  27. 4
      src/qt/intro.cpp
  28. 4
      src/qt/intro.h
  29. 4
      src/qt/macdockiconhandler.h
  30. 4
      src/qt/macnotificationhandler.h
  31. 4
      src/qt/monitoreddatamapper.cpp
  32. 4
      src/qt/monitoreddatamapper.h
  33. 4
      src/qt/notificator.cpp
  34. 4
      src/qt/notificator.h
  35. 4
      src/qt/optionsdialog.cpp
  36. 4
      src/qt/optionsdialog.h
  37. 4
      src/qt/optionsmodel.cpp
  38. 4
      src/qt/optionsmodel.h
  39. 4
      src/qt/overviewpage.cpp
  40. 4
      src/qt/overviewpage.h
  41. 4
      src/qt/paymentrequestplus.cpp
  42. 4
      src/qt/paymentrequestplus.h
  43. 2
      src/qt/paymentserver.cpp
  44. 4
      src/qt/paymentserver.h
  45. 4
      src/qt/qvalidatedlineedit.cpp
  46. 4
      src/qt/qvalidatedlineedit.h
  47. 4
      src/qt/qvaluecombobox.cpp
  48. 4
      src/qt/qvaluecombobox.h
  49. 4
      src/qt/receivecoinsdialog.cpp
  50. 4
      src/qt/receivecoinsdialog.h
  51. 4
      src/qt/receiverequestdialog.cpp
  52. 4
      src/qt/receiverequestdialog.h
  53. 4
      src/qt/rpcconsole.cpp
  54. 4
      src/qt/rpcconsole.h
  55. 4
      src/qt/sendcoinsdialog.cpp
  56. 4
      src/qt/sendcoinsdialog.h
  57. 4
      src/qt/sendcoinsentry.cpp
  58. 4
      src/qt/sendcoinsentry.h
  59. 4
      src/qt/signverifymessagedialog.cpp
  60. 4
      src/qt/signverifymessagedialog.h
  61. 4
      src/qt/splashscreen.cpp
  62. 4
      src/qt/splashscreen.h
  63. 4
      src/qt/trafficgraphwidget.cpp
  64. 4
      src/qt/trafficgraphwidget.h
  65. 4
      src/qt/transactiondesc.cpp
  66. 4
      src/qt/transactiondesc.h
  67. 4
      src/qt/transactiondescdialog.cpp
  68. 4
      src/qt/transactiondescdialog.h
  69. 4
      src/qt/transactionfilterproxy.cpp
  70. 4
      src/qt/transactionfilterproxy.h
  71. 4
      src/qt/transactionrecord.cpp
  72. 4
      src/qt/transactionrecord.h
  73. 4
      src/qt/transactiontablemodel.cpp
  74. 4
      src/qt/transactiontablemodel.h
  75. 4
      src/qt/transactionview.cpp
  76. 4
      src/qt/transactionview.h
  77. 10
      src/qt/walletframe.cpp
  78. 10
      src/qt/walletframe.h
  79. 4
      src/qt/walletmodel.cpp
  80. 4
      src/qt/walletmodel.h
  81. 4
      src/qt/walletmodeltransaction.cpp
  82. 4
      src/qt/walletmodeltransaction.h
  83. 10
      src/qt/walletview.cpp
  84. 10
      src/qt/walletview.h

4
src/qt/aboutdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "aboutdialog.h"
#include "ui_aboutdialog.h"

4
src/qt/aboutdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H

4
src/qt/addressbookpage.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "bitcoin-config.h"
#endif

4
src/qt/addressbookpage.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ADDRESSBOOKPAGE_H
#define ADDRESSBOOKPAGE_H

4
src/qt/addresstablemodel.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "addresstablemodel.h"
#include "guiutil.h"

4
src/qt/addresstablemodel.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ADDRESSTABLEMODEL_H
#define ADDRESSTABLEMODEL_H

4
src/qt/askpassphrasedialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "askpassphrasedialog.h"
#include "ui_askpassphrasedialog.h"

4
src/qt/askpassphrasedialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ASKPASSPHRASEDIALOG_H
#define ASKPASSPHRASEDIALOG_H

6
src/qt/bitcoin.cpp

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
/*
* W.J. van der Laan 2011-2012
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoingui.h"
#include "clientmodel.h"

4
src/qt/bitcoinaddressvalidator.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoinaddressvalidator.h"
/* Base58 characters are:

4
src/qt/bitcoinaddressvalidator.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H

4
src/qt/bitcoinamountfield.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoinamountfield.h"
#include "qvaluecombobox.h"

4
src/qt/bitcoinamountfield.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINAMOUNTFIELD_H
#define BITCOINAMOUNTFIELD_H

9
src/qt/bitcoingui.cpp

@ -1,9 +1,6 @@ @@ -1,9 +1,6 @@
/*
* Qt4 bitcoin GUI.
*
* W.J. van der Laan 2011-2012
* The Bitcoin Developers 2011-2012
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoingui.h"

4
src/qt/bitcoingui.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINGUI_H
#define BITCOINGUI_H

4
src/qt/bitcoinunits.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoinunits.h"
#include <QStringList>

4
src/qt/bitcoinunits.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOINUNITS_H
#define BITCOINUNITS_H

4
src/qt/clientmodel.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "clientmodel.h"
#include "guiconstants.h"

4
src/qt/clientmodel.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef CLIENTMODEL_H
#define CLIENTMODEL_H

4
src/qt/csvmodelwriter.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "csvmodelwriter.h"
#include <QAbstractItemModel>

4
src/qt/csvmodelwriter.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef CSVMODELWRITER_H
#define CSVMODELWRITER_H

4
src/qt/editaddressdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "editaddressdialog.h"
#include "ui_editaddressdialog.h"

4
src/qt/editaddressdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef EDITADDRESSDIALOG_H
#define EDITADDRESSDIALOG_H

4
src/qt/guiconstants.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GUICONSTANTS_H
#define GUICONSTANTS_H

4
src/qt/guiutil.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "guiutil.h"
#include "bitcoinaddressvalidator.h"

4
src/qt/guiutil.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GUIUTIL_H
#define GUIUTIL_H

4
src/qt/intro.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "intro.h"
#include "ui_intro.h"
#include "util.h"

4
src/qt/intro.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef INTRO_H
#define INTRO_H

4
src/qt/macdockiconhandler.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MACDOCKICONHANDLER_H
#define MACDOCKICONHANDLER_H

4
src/qt/macnotificationhandler.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MACNOTIFICATIONHANDLER_H
#define MACNOTIFICATIONHANDLER_H
#include <QObject>

4
src/qt/monitoreddatamapper.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "monitoreddatamapper.h"
#include <QWidget>

4
src/qt/monitoreddatamapper.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MONITOREDDATAMAPPER_H
#define MONITOREDDATAMAPPER_H

4
src/qt/notificator.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "notificator.h"
#include <QApplication>

4
src/qt/notificator.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef NOTIFICATOR_H
#define NOTIFICATOR_H

4
src/qt/optionsdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "bitcoin-config.h"
#endif

4
src/qt/optionsdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef OPTIONSDIALOG_H
#define OPTIONSDIALOG_H

4
src/qt/optionsmodel.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "bitcoin-config.h"
#endif

4
src/qt/optionsmodel.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef OPTIONSMODEL_H
#define OPTIONSMODEL_H

4
src/qt/overviewpage.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "overviewpage.h"
#include "ui_overviewpage.h"

4
src/qt/overviewpage.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef OVERVIEWPAGE_H
#define OVERVIEWPAGE_H

4
src/qt/paymentrequestplus.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Wraps dumb protocol buffer paymentRequest
// with some extra methods

4
src/qt/paymentrequestplus.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef PAYMENTREQUESTPLUS_H
#define PAYMENTREQUESTPLUS_H

2
src/qt/paymentserver.cpp

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
// Copyright (c) 2009-2013 The Bitcoin developers
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

4
src/qt/paymentserver.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef PAYMENTSERVER_H
#define PAYMENTSERVER_H

4
src/qt/qvalidatedlineedit.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "qvalidatedlineedit.h"
#include "guiconstants.h"

4
src/qt/qvalidatedlineedit.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef QVALIDATEDLINEEDIT_H
#define QVALIDATEDLINEEDIT_H

4
src/qt/qvaluecombobox.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "qvaluecombobox.h"
QValueComboBox::QValueComboBox(QWidget *parent) :

4
src/qt/qvaluecombobox.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef QVALUECOMBOBOX_H
#define QVALUECOMBOBOX_H

4
src/qt/receivecoinsdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "receivecoinsdialog.h"
#include "ui_receivecoinsdialog.h"

4
src/qt/receivecoinsdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef RECEIVECOINSDIALOG_H
#define RECEIVECOINSDIALOG_H

4
src/qt/receiverequestdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "receiverequestdialog.h"
#include "ui_receiverequestdialog.h"

4
src/qt/receiverequestdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef QRCODEDIALOG_H
#define QRCODEDIALOG_H

4
src/qt/rpcconsole.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "rpcconsole.h"
#include "ui_rpcconsole.h"

4
src/qt/rpcconsole.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef RPCCONSOLE_H
#define RPCCONSOLE_H

4
src/qt/sendcoinsdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsdialog.h"
#include "ui_sendcoinsdialog.h"

4
src/qt/sendcoinsdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SENDCOINSDIALOG_H
#define SENDCOINSDIALOG_H

4
src/qt/sendcoinsentry.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsentry.h"
#include "ui_sendcoinsentry.h"

4
src/qt/sendcoinsentry.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SENDCOINSENTRY_H
#define SENDCOINSENTRY_H

4
src/qt/signverifymessagedialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "signverifymessagedialog.h"
#include "ui_signverifymessagedialog.h"

4
src/qt/signverifymessagedialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SIGNVERIFYMESSAGEDIALOG_H
#define SIGNVERIFYMESSAGEDIALOG_H

4
src/qt/splashscreen.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "splashscreen.h"
#include "clientversion.h"
#include "util.h"

4
src/qt/splashscreen.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef SPLASHSCREEN_H
#define SPLASHSCREEN_H

4
src/qt/trafficgraphwidget.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "trafficgraphwidget.h"
#include "clientmodel.h"

4
src/qt/trafficgraphwidget.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRAFFICGRAPHWIDGET_H
#define TRAFFICGRAPHWIDGET_H

4
src/qt/transactiondesc.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactiondesc.h"
#include "guiutil.h"

4
src/qt/transactiondesc.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONDESC_H
#define TRANSACTIONDESC_H

4
src/qt/transactiondescdialog.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactiondescdialog.h"
#include "ui_transactiondescdialog.h"

4
src/qt/transactiondescdialog.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONDESCDIALOG_H
#define TRANSACTIONDESCDIALOG_H

4
src/qt/transactionfilterproxy.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactionfilterproxy.h"
#include "transactiontablemodel.h"

4
src/qt/transactionfilterproxy.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONFILTERPROXY_H
#define TRANSACTIONFILTERPROXY_H

4
src/qt/transactionrecord.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactionrecord.h"
#include "wallet.h"

4
src/qt/transactionrecord.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONRECORD_H
#define TRANSACTIONRECORD_H

4
src/qt/transactiontablemodel.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactiontablemodel.h"
#include "guiutil.h"

4
src/qt/transactiontablemodel.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONTABLEMODEL_H
#define TRANSACTIONTABLEMODEL_H

4
src/qt/transactionview.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactionview.h"
#include "transactionfilterproxy.h"

4
src/qt/transactionview.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef TRANSACTIONVIEW_H
#define TRANSACTIONVIEW_H

10
src/qt/walletframe.cpp

@ -1,9 +1,7 @@ @@ -1,9 +1,7 @@
/*
* Qt4 bitcoin GUI.
*
* W.J. van der Laan 2011-2012
* The Bitcoin Developers 2011-2013
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "walletframe.h"
#include "walletview.h"
#include "bitcoingui.h"

10
src/qt/walletframe.h

@ -1,9 +1,7 @@ @@ -1,9 +1,7 @@
/*
* Qt4 bitcoin GUI.
*
* W.J. van der Laan 2011-2012
* The Bitcoin Developers 2011-2013
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WALLETFRAME_H
#define WALLETFRAME_H

4
src/qt/walletmodel.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "walletmodel.h"
#include "guiconstants.h"
#include "optionsmodel.h"

4
src/qt/walletmodel.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WALLETMODEL_H
#define WALLETMODEL_H

4
src/qt/walletmodeltransaction.cpp

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "walletmodeltransaction.h"
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &recipients) :

4
src/qt/walletmodeltransaction.h

@ -1,3 +1,7 @@ @@ -1,3 +1,7 @@
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WALLETMODELTRANSACTION_H
#define WALLETMODELTRANSACTION_H

10
src/qt/walletview.cpp

@ -1,9 +1,7 @@ @@ -1,9 +1,7 @@
/*
* Qt4 bitcoin GUI.
*
* W.J. van der Laan 2011-2012
* The Bitcoin Developers 2011-2013
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "walletview.h"
#include "bitcoingui.h"
#include "transactiontablemodel.h"

10
src/qt/walletview.h

@ -1,9 +1,7 @@ @@ -1,9 +1,7 @@
/*
* Qt4 bitcoin GUI.
*
* W.J. van der Laan 2011-2012
* The Bitcoin Developers 2011-2013
*/
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WALLETVIEW_H
#define WALLETVIEW_H

Loading…
Cancel
Save