On Tue, 16 Jun 2009 21:51:35 +0200, Barbieri wrote:
YEAH!!!
the problem is here!!
if (NZV(default_value)) gtk_entry_set_text(GTK_ENTRY(entry), default_value);
NZV is not recognized!!
But... what is NZV??
A convenience macro to check a string whether it is non-NULL and non-empty (NZV = non zero value). The macro is defined in src/utils.h in Geany.
So, just add #include "utils.h" to the list of included headers in gdb_ui_main.c and it should work.
Regards, Enrico