pygobject r966 - in trunk: . gio
- From: paulp svn gnome org
- To: svn-commits-list gnome org
- Subject: pygobject r966 - in trunk: . gio
- Date: Sun, 7 Sep 2008 14:46:42 +0000 (UTC)
Author: paulp
Date: Sun Sep 7 14:46:42 2008
New Revision: 966
URL: http://svn.gnome.org/viewvc/pygobject?rev=966&view=rev
Log:
2008-09-07 Frederic Peters <fpeters 0d be>
* gio/gfile.override (_wrap_g_file_load_contents)
(_wrap_g_file_load_contents_finish): Fix typos breaking
compilation (bug #551212).
Modified:
trunk/ChangeLog
trunk/gio/gfile.override
Modified: trunk/gio/gfile.override
==============================================================================
--- trunk/gio/gfile.override (original)
+++ trunk/gio/gfile.override Sun Sep 7 14:46:42 2008
@@ -176,7 +176,7 @@
GCancellable *cancellable;
PyGObject *pycancellable = NULL;
gchar *contents, *etag_out;
- gsize lenght;
+ gsize length;
GError *error = NULL;
gboolean ret;
@@ -190,7 +190,7 @@
return NULL;
ret = g_file_load_contents(G_FILE(self->obj), cancellable,
- &contents, &lenght, &etag_out, &error);
+ &contents, &length, &etag_out, &error);
if (pyg_error_check(&error))
return NULL;
@@ -251,7 +251,7 @@
static char *kwlist[] = { "res", NULL };
PyGObject *res;
gchar *contents, *etag_out;
- gsize lenght;
+ gsize length;
GError *error = NULL;
gboolean ret;
@@ -264,7 +264,7 @@
ret = g_file_load_contents_finish(G_FILE(self->obj),
G_ASYNC_RESULT(res->obj), &contents,
- &lenght, &etag_out, &error);
+ &length, &etag_out, &error);
if (pyg_error_check(&error))
return NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]