From: spog Date: Sat, 13 May 2006 12:41:19 +0000 (+0000) Subject: fixed linux-only crash when error message handler causes an error X-Git-Tag: xonotic-v0.7.0~16^2~12^2~229 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=509042502f58be20e84ccc3ba1f4487e20d4d3a6 fixed linux-only crash when error message handler causes an error git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@65 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- diff --git a/radiant/main.cpp b/radiant/main.cpp index 329d3e90..a1e39bad 100644 --- a/radiant/main.cpp +++ b/radiant/main.cpp @@ -299,10 +299,9 @@ public: m_buffer << "Please report this error to the developers\n"; gtk_MessageBox(0, m_buffer.c_str(), "Radiant - Runtime Error", eMB_OK, eMB_ICONERROR); m_buffer.clear(); - return true; #endif } - return false; + return true; } };