diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-09-26 10:04:04 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-09-26 10:04:04 -0400 |
commit | 565c4771b6eba0eeb82f8602735100bbcf4b053e (patch) | |
tree | e734f79e82ca1e4c442412907435b77fa640a11d /src/util.h | |
parent | ee1d6e4ed0a931defc6f6273cc67a0a3e980940f (diff) |
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/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index dd5c41135e..33013a2f81 100644 --- a/src/util.h +++ b/src/util.h @@ -132,7 +132,7 @@ inline int myclosesocket(SOCKET& hSocket) return ret; } #define closesocket(s) myclosesocket(s) -#if !defined(QT_GUI) && !defined(GUI) +#if !defined(QT_GUI) inline const char* _(const char* psz) { return psz; |