aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-09-23 02:12:03 +0800
committerChristian Persch <chpe@src.gnome.org>2004-09-23 02:12:03 +0800
commitabea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed (patch)
tree3a76701a5fc4b8ff327e2bc01a8d0e7a52513957 /lib
parentdbe0e682f7978e701fa796809f173435bf05dee9 (diff)
downloadgsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar.gz
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar.bz2
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar.lz
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar.xz
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.tar.zst
gsoc2013-epiphany-abea24d0d3844ff71ca8e1cec9aa4f2429e6b4ed.zip
Initialise position passed to gtk_editable_insert_text().
2004-09-22 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-dialog.c: (set_editable_from_value): Initialise position passed to gtk_editable_insert_text().
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c
index f66139266..23bf95dd0 100644
--- a/lib/ephy-dialog.c
+++ b/lib/ephy-dialog.c
@@ -465,7 +465,7 @@ static void
set_editable_from_value (PropertyInfo *info, const GValue *value)
{
char *text = NULL;
- int pos;
+ int pos = 0; /* insertion position */
g_return_if_fail (GTK_IS_EDITABLE (info->widget));