+2008-01-25 Matthias Clasen <mclasen@redhat.com>
+
+ * ginputstream.c:
+ * goutputstream.c:
+ * gbufferedinputstream.c:
+ * glocalfile.c: String improvements. (#511966,
+ Theppitak Karoonboonyanan)
+
2008-01-24 Matthias Clasen <mclasen@redhat.com>
* gioscheduler.h: Expand docs a bit.
callback,
user_data,
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_input_stream_read_async"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return;
}
if (((gssize) count) < 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_input_stream_read"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return -1;
}
if (((gssize) count) < 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_input_stream_skip"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return -1;
}
callback,
user_data,
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_input_stream_read_async"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return;
}
callback,
user_data,
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_input_stream_skip_async"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return;
}
g_set_error (error, G_IO_ERROR,
g_io_error_from_errno (errno),
- _("Unable to create trashed file: %s"),
+ _("Unable to create trashing info file: %s"),
g_strerror (errno));
return FALSE;
}
if (((gssize) count) < 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_output_stream_write"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return -1;
}
callback,
user_data,
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Too large count value passed to g_output_stream_write_async"));
+ _("Too large count value passed to %s"),
+ G_GNUC_PRETTY_FUNCTION);
return;
}