mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 14:42:10 +01:00
win32: fix warnings avoid discarding const qualifier
This commit is contained in:
parent
07e55c049d
commit
5f4b92202b
@ -237,8 +237,8 @@ g_win32_fs_monitor_callback (DWORD error,
|
|||||||
|
|
||||||
void
|
void
|
||||||
g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor,
|
g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor,
|
||||||
gchar *dirname,
|
const gchar *dirname,
|
||||||
gchar *filename,
|
const gchar *filename,
|
||||||
gboolean isfile)
|
gboolean isfile)
|
||||||
{
|
{
|
||||||
wchar_t *wdirname_with_long_prefix = NULL;
|
wchar_t *wdirname_with_long_prefix = NULL;
|
||||||
|
@ -63,8 +63,8 @@ enum GWin32FileMonitorFileAlias
|
|||||||
GWin32FSMonitorPrivate* g_win32_fs_monitor_create (gboolean isfile);
|
GWin32FSMonitorPrivate* g_win32_fs_monitor_create (gboolean isfile);
|
||||||
|
|
||||||
void g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor,
|
void g_win32_fs_monitor_init (GWin32FSMonitorPrivate *monitor,
|
||||||
gchar *dirname,
|
const gchar *dirname,
|
||||||
gchar *filename,
|
const gchar *filename,
|
||||||
gboolean isfile);
|
gboolean isfile);
|
||||||
|
|
||||||
void g_win32_fs_monitor_finalize (GWin32FSMonitorPrivate *monitor);
|
void g_win32_fs_monitor_finalize (GWin32FSMonitorPrivate *monitor);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user