From: Jim Evins Date: Sun, 8 Dec 2002 06:27:06 +0000 (+0000) Subject: Changed field text from "FIELD{*}" to "${*}". X-Git-Tag: glabels-2_3_0~683 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c7ba6d95b143d1f44d1e8f615ebcebde8384e686;p=glabels Changed field text from "FIELD{*}" to "${*}". git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@204 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- diff --git a/glabels2/src/wdgt-text-entry.c b/glabels2/src/wdgt-text-entry.c index a7419dea..cb173b8e 100644 --- a/glabels2/src/wdgt-text-entry.c +++ b/glabels2/src/wdgt-text-entry.c @@ -266,7 +266,8 @@ insert_cb (glWdgtTextEntry *text_entry) key = gtk_editable_get_chars (GTK_EDITABLE (text_entry->key_entry), 0, -1); - field = g_strdup_printf ("FIELD{%s}", key); + field = g_strdup_printf ("${%s}", key); + gl_debug (DEBUG_WDGT, "Inserting %s", field); buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (text_entry->text_entry)); gtk_text_buffer_insert_at_cursor (buffer, field, -1);