diff options
| author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-26 16:09:43 +0000 |
|---|---|---|
| committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-26 16:09:43 +0000 |
| commit | 8a46ed83cc65707fab87f93ab59e9a611dd02a06 (patch) | |
| tree | 0130f08565d4d7c5379f320d934242ffe98eebcc | |
| parent | GUI-less build target bitcoind that links to wxBase and shouldn't need GTK, (diff) | |
| download | discoin-8a46ed83cc65707fab87f93ab59e9a611dd02a06.tar.xz discoin-8a46ed83cc65707fab87f93ab59e9a611dd02a06.zip | |
wx/utils.h and wx/clipbrd.h not needed on bitcoind wxbase build
| -rw-r--r-- | headers.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,11 +19,11 @@ #define WIN32_LEAN_AND_MEAN 1
#define __STDC_LIMIT_MACROS // to enable UINT64_MAX from stdint.h
#include <wx/wx.h>
-#include <wx/clipbrd.h>
-#include <wx/snglinst.h>
#include <wx/stdpaths.h>
-#include <wx/utils.h>
+#include <wx/snglinst.h>
#if wxUSE_GUI
+#include <wx/utils.h>
+#include <wx/clipbrd.h>
#include <wx/taskbar.h>
#endif
#include <openssl/ecdsa.h>
|