[Epiphany] Really small patch
- From: Vincent Untz <vincent vuntz net>
- To: epiphany mozdev org
- Subject: [Epiphany] Really small patch
- Date: Mon, 6 Jan 2003 23:06:06 +0100
Hi
It's really a small patch to make it compile here. There was a variable
declaration after an instruction.
Vincent
--
Les gens heureux ne sont pas presses.
? easy_patch.diff
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/epiphany/ChangeLog,v
retrieving revision 1.14
diff -u -r1.14 ChangeLog
--- ChangeLog 6 Jan 2003 10:38:02 -0000 1.14
+++ ChangeLog 6 Jan 2003 22:01:48 -0000
@@ -1,3 +1,8 @@
+2003-01-06 Vincent Untz <vincent@vuntz.net>
+
+ * lib/widgets/ephy-autocompletion-window.c: declare all variables
+ before the first instruction.
+
2003-01-06 Marco Pesenti Gritti <marco@it.gnome.org>
* TODO:
Index: lib/widgets/ephy-autocompletion-window.c
===================================================================
RCS file: /cvs/gnome/epiphany/lib/widgets/ephy-autocompletion-window.c,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 ephy-autocompletion-window.c
--- lib/widgets/ephy-autocompletion-window.c 30 Dec 2002 19:27:42 -0000 1.1.1.1
+++ lib/widgets/ephy-autocompletion-window.c 6 Jan 2003 22:01:49 -0000
@@ -650,8 +650,8 @@
GtkTreeSelection *ts = gtk_tree_view_get_selection (tv);
GtkTreeModel *model;
GList *selected = NULL;
- selected = gtk_tree_selection_get_selected_rows (ts, &model);
gboolean prev_result = TRUE;
+ selected = gtk_tree_selection_get_selected_rows (ts, &model);
gtk_tree_selection_unselect_all (ts);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]