aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-05-06 04:33:44 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-05-06 04:33:44 -0700
commit4408034bcd70032b582e26637a67166df578a8f4 (patch)
tree0704aee00e67dc659145240c927959f30368ddeb
parent62b427ec5532065744f9836e6a7b1676428c3434 (diff)
parent2f62b1299f1d2d8e56ff9096017b1f3835b41642 (diff)
downloadbitcoin-4408034bcd70032b582e26637a67166df578a8f4.tar.xz
Merge pull request #197 from TheBlueMatt/errorfix
Fix GUI crash
-rw-r--r--ui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.cpp b/ui.cpp
index 8554239546..f2bdd49d55 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -1929,6 +1929,7 @@ void CSendDialog::OnButtonSend(wxCommandEvent& event)
{
wxMessageBox(strError + " ", _("Sending..."));
EndModal(false);
+ return;
}
}
}