diff options
| author | Gavin Andresen <[email protected]> | 2011-09-26 10:04:04 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-09-26 10:04:04 -0400 |
| commit | 565c4771b6eba0eeb82f8602735100bbcf4b053e (patch) | |
| tree | e734f79e82ca1e4c442412907435b77fa640a11d /src/db.cpp | |
| parent | Merge pull request #492 from gavinandresen/fasterinitialdownload (diff) | |
| download | discoin-565c4771b6eba0eeb82f8602735100bbcf4b053e.tar.xz discoin-565c4771b6eba0eeb82f8602735100bbcf4b053e.zip | |
Remove wxWidgets
Makefiles now build bitcoind only.
qmake/make in top-level directory is used to build Bitcoin QT
Deleted almost all #ifdef GUI from the code (left one possibly controversial one)
Deleted xpm/ files.
Diffstat (limited to 'src/db.cpp')
| -rw-r--r-- | src/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp index a22b17e34..f2363647a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -822,7 +822,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) ssKey >> strKey; // Options -#ifndef GUI +#ifndef QT_GUI if (strKey == "fGenerateBitcoins") ssValue >> fGenerateBitcoins; #endif if (strKey == "nTransactionFee") ssValue >> nTransactionFee; |