diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-14 00:08:27 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-14 00:08:27 +0000 |
commit | c4319e678f693d5fbc49bd357ded1c8f951476e9 (patch) | |
tree | a615bf0e4098a3f35baa97fca031efd99c2cfc7d /net.cpp | |
parent | c85dfb148a1e3d75773bc5f6b7cad14363fd666b (diff) |
Workaround for bug on wxWidgets 2.9.0 Ubuntu 9.10 64-bit where first character of the hidden columns were displayed so status column had three numbers overprinted. Fixed by adding a leading space to the hidden columns. 64-bit compile with wxWidgets 2.9.0 seems to be fully working normally now.
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@62 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'net.cpp')
-rw-r--r-- | net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1032,7 +1032,7 @@ void ThreadMessageHandler2(void* parg) {
printf("ThreadMessageHandler started\n");
SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL);
- loop
+ while (!fShutdown)
{
// Poll the connected nodes for messages
vector<CNode*> vNodesCopy;
|