Patch #1259 2006-08-01 18:39
sethjackson
Wrong path to compiler settings- Download
- 1259-Wrong_path_to.patch (1.4 KB)
Index: src/plugins/debuggergdb/debuggergdb.cpp
===================================================================
--- src/plugins/debuggergdb/debuggergdb.cpp (revision 2798)
+++ src/plugins/debuggergdb/debuggergdb.cpp (working copy)
@@ -844,7 +844,7 @@
{
msgMan->AppendLog(m_PageIndex,_("ERROR: You need to specify a debugger program in the compiler's settings."));
#ifdef __WXMSW__
- msgMan->Log(m_PageIndex,_("\n(For MINGW compilers, it's 'gdb.exe' (without the quotes))"));
+ msgMan->Log(m_PageIndex,_("\n(For MinGW compilers, it's 'gdb.exe' (without the quotes))"));
msgMan->Log(m_PageIndex,_("\n(For MSVC compilers, it's 'cdb.exe' (without the quotes))"));
#else
msgMan->Log(m_PageIndex,_("\n(For GCC compilers, it's 'gdb' (without the quotes))"));
@@ -857,8 +857,8 @@
if (cmdexe.IsEmpty())
{
cbMessageBox(_("The debugger executable is not set.\n"
- "To set it, go to \"Settings/Configure plugins/Compiler\", switch to the \"Programs\" tab\n"
- "and select the debugger program."), _("Error"), wxICON_ERROR);
+ "To set it, go to \"Settings/Compiler and debugger\", switch to the \"Programs\" tab,\n"
+ "and select the debugger program."), _("Error"), wxICON_ERROR);
msgMan->Log(m_PageIndex, _("Aborted"));
return 4;
}
History
killerbot 2006-08-01 19:11
applied rev 2799