diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-03-20 12:30:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-03-20 12:30:29 +0100 |
| commit | 3811a5025ebc48fbbed30178d645872e3b543068 (patch) | |
| tree | caf6765dd0a9455891f14d2df42f164b56cfba13 /src/qt | |
| parent | Merge pull request #5149 (diff) | |
| parent | allocators: split allocators and pagelocker (diff) | |
| download | discoin-3811a5025ebc48fbbed30178d645872e3b543068.tar.xz discoin-3811a5025ebc48fbbed30178d645872e3b543068.zip | |
Merge #5810: MOVEONLY-ISH: allocators: split allocators and pagelocker
d7d187e allocators: split allocators and pagelocker (Cory Fields)
Diffstat (limited to 'src/qt')
| -rw-r--r-- | src/qt/askpassphrasedialog.cpp | 2 | ||||
| -rw-r--r-- | src/qt/walletmodel.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 9b7b59c0d..229139e65 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -8,7 +8,7 @@ #include "guiconstants.h" #include "walletmodel.h" -#include "allocators.h" +#include "support/allocators/secure.h" #include <QKeyEvent> #include <QMessageBox> diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index de915165f..e26343888 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -8,7 +8,7 @@ #include "paymentrequestplus.h" #include "walletmodeltransaction.h" -#include "allocators.h" /* for SecureString */ +#include "support/allocators/secure.h" #include <map> #include <vector> |