Don't redefine GNOMELOCALEDIR. Don't use a const char * to allocate and
2006-11-15 Kjartan Maraas <kmaraas@gnome.org> * Makefile.am: Don't redefine GNOMELOCALEDIR. * drw-break-window.c: (postpone_entry_activate_cb): Don't use a const char * to allocate and free strings.
This commit is contained in:
parent
c0fb2269f7
commit
422223acaf
3 changed files with 9 additions and 2 deletions
|
@ -422,7 +422,7 @@ postpone_entry_activate_cb (GtkWidget *entry,
|
|||
DrwBreakWindow *window)
|
||||
{
|
||||
const gchar *str;
|
||||
const gchar *phrase;
|
||||
gchar *phrase;
|
||||
GConfClient *client = gconf_client_get_default();
|
||||
|
||||
str = gtk_entry_get_text (GTK_ENTRY (entry));
|
||||
|
@ -434,9 +434,11 @@ postpone_entry_activate_cb (GtkWidget *entry,
|
|||
|
||||
if (!strcmp (str, phrase)) {
|
||||
g_signal_emit (window, signals[POSTPONE], 0, NULL);
|
||||
g_free (phrase);
|
||||
return;
|
||||
}
|
||||
|
||||
g_free (phrase);
|
||||
gtk_entry_set_text (GTK_ENTRY (entry), "");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue