summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Larsson <alexl@redhat.com>2002-04-05 15:11:00 +0000
committerAlexander Larsson <alexl@src.gnome.org>2002-04-05 15:11:00 +0000
commitc744f44f0c5476b113973f364e97ef3616e67cc8 (patch)
treedf055721a9d274b5875ee257e04b3dfdb1221b6e
parentcca4abf498309f3aff2a0d924f23b3d6bacc82d9 (diff)
downloadgtk+-c744f44f0c5476b113973f364e97ef3616e67cc8.tar.gz
Fix undefined variable typo. Patch from Simon Floery <simon.floery@gmx.at>
2002-04-05 Alex Larsson <alexl@redhat.com> * gdk/linux-fb/gdkkeyboard-fb.c (write_string): Fix undefined variable typo. Patch from Simon Floery <simon.floery@gmx.at>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-26
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--gdk/linux-fb/gdkkeyboard-fb.c2
7 files changed, 37 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index cf4123ae6a..52e0d6a01e 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+2002-04-05 Alex Larsson <alexl@redhat.com>
+
+ * gdk/linux-fb/gdkkeyboard-fb.c (write_string):
+ Fix undefined variable typo.
+ Patch from Simon Floery <simon.floery@gmx.at>
+
Fri Apr 5 01:06:15 2002 Tim Janik <timj@gtk.org>
* gdk/x11/gdkwindow-x11.c (set_text_property): fix segfault
diff --git a/gdk/linux-fb/gdkkeyboard-fb.c b/gdk/linux-fb/gdkkeyboard-fb.c
index e8af45c0b5..0a458b91c4 100644
--- a/gdk/linux-fb/gdkkeyboard-fb.c
+++ b/gdk/linux-fb/gdkkeyboard-fb.c
@@ -876,7 +876,7 @@ static gboolean
write_string (gint fd,
gchar *str)
{
- gsize to_write = strlen (string);
+ gsize to_write = strlen (str);
while (to_write > 0)
{