aboutsummaryrefslogtreecommitdiff
path: root/src/qt/paymentrequestplus.h
Commit message (Collapse)AuthorAgeFilesLines
* Selectively suppress deprecation warningsJonas Schnelli2017-02-141-0/+3
|
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* [copyright] copyright header style uniformisle29832016-11-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Three categories of modifications: 1) 1 instance of 'The Bitcoin Core developers \n', 1 instance of 'the Bitcoin Core developers\n', 3 instances of 'Bitcoin Core Developers\n', and 12 instances of 'The Bitcoin developers\n' are made uniform with the 443 instances of 'The Bitcoin Core developers\n' 2) 3 instances of 'BitPay, Inc\.\n' are made uniform with the other 6 instances of 'BitPay Inc\.\n' 3) 4 instances where there was no '(c)' between the 'Copyright' and the year where it deviates from the style of the local directory.
* Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|
* [qt] Move GUI related HelpMessage() part downstreamMarcoFalke2015-11-281-0/+2
|
* [Qt] remove unused PaymentRequestPlus::getPKIType functionPhilip Kaufmann2015-04-151-1/+0
|
* openssl: abstract out OPENSSL_cleanseCory Fields2015-02-151-0/+2
| | | | | | This makes it easier for us to replace it if desired, since it's now only in one spot. Also, it avoids the openssl include from allocators.h, which essentially forced openssl to be included from every compilation unit.
* [Qt] update paymentserver license and cleanup orderingPhilip Kaufmann2014-12-081-2/+2
|
* Fix all header definesPavel Janík2014-11-031-4/+3
|
* Use a typedef for monetary valuesMark Friedenbach2014-09-261-1/+1
|
* Remove `using namespace std` from header fileWladimir J. van der Laan2014-06-161-1/+1
| | | | | It's considered bad form to import things into the global namespace in a header. Put it in the cpp files where it is needed instead.
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-3/+4
| | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* Payment Protocol: X509-validated payment requestsGavin Andresen2013-08-221-0/+41
Add support for a Payment Protocol to Bitcoin-Qt. Payment messages are protocol-buffer encoded and communicated over http(s), so this adds a dependency on the Google protocol buffer library, and requires Qt with OpenSSL support.