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:
Kjartan Maraas 2006-11-15 17:21:53 +00:00 committed by Kjartan Maraas
parent c0fb2269f7
commit 422223acaf
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
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.
2006-07-25 Vincent Untz <vuntz@gnome.org>
* eggtrayicon.[ch]: kill

View file

@ -1,6 +1,5 @@
INCLUDES = \
@GNOME_CFLAGS@ \
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
-DIMAGEDIR=\"$(GNOMECC_PIXMAPS_DIR)\"
bin_PROGRAMS = gnome-typing-monitor

View file

@ -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), "");
}