mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
Bug 562613 – Missing const modifier in string parameters
2009-03-03 Alexander Larsson <alexl@redhat.com> Bug 562613 – Missing const modifier in string parameters * gfileinputstream.[ch]: * gfileoutputstream.[ch]: * glocalfileinfo.[ch]: Make string arguments const if used as such. svn path=/trunk/; revision=7952
This commit is contained in:
committed by
Alexander Larsson
parent
0b9f24c1e1
commit
f891d4e04e
@@ -74,11 +74,11 @@ struct _GFileOutputStreamClass
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GFileInfo * (* query_info) (GFileOutputStream *stream,
|
||||
char *attributes,
|
||||
const char *attributes,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
void (* query_info_async) (GFileOutputStream *stream,
|
||||
char *attributes,
|
||||
const char *attributes,
|
||||
int io_priority,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
@@ -100,11 +100,11 @@ GType g_file_output_stream_get_type (void) G_GNUC_CONST;
|
||||
|
||||
|
||||
GFileInfo *g_file_output_stream_query_info (GFileOutputStream *stream,
|
||||
char *attributes,
|
||||
const char *attributes,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
void g_file_output_stream_query_info_async (GFileOutputStream *stream,
|
||||
char *attributes,
|
||||
const char *attributes,
|
||||
int io_priority,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
|
Reference in New Issue
Block a user