mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
directory monitor: use the right 'mount_notify'
During initialisation of a directory monitor with the G_FILE_MONITOR_WATCH_MOUNTS flag set, GLocalDirectory monitor will add a UNIX mount watch in case the file notification backend doesn't support reporting these events for itself. Unfortunately, it was performing the check incorrectly, resulting in a monitor always being added. Fix that, and add the #define for G_LOCAL_DIRECTORY_MONITOR_GET_CLASS() that was also missing (since the fix depends on it). https://bugzilla.gnome.org/show_bug.cgi?id=704882
This commit is contained in:
parent
dd4c3695b4
commit
1ddfd9d98e
@ -121,7 +121,7 @@ g_local_directory_monitor_constructor (GType type,
|
||||
local_monitor->dirname = g_strdup (dirname);
|
||||
local_monitor->flags = flags;
|
||||
|
||||
if (!klass->mount_notify &&
|
||||
if (!G_LOCAL_DIRECTORY_MONITOR_GET_CLASS (local_monitor)->mount_notify &&
|
||||
(flags & G_FILE_MONITOR_WATCH_MOUNTS))
|
||||
{
|
||||
#ifdef G_OS_WIN32
|
||||
|
@ -34,6 +34,7 @@ G_BEGIN_DECLS
|
||||
#define G_LOCAL_DIRECTORY_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), G_TYPE_LOCAL_DIRECTORY_MONITOR, GLocalDirectoryMonitorClass))
|
||||
#define G_IS_LOCAL_DIRECTORY_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_LOCAL_DIRECTORY_MONITOR))
|
||||
#define G_IS_LOCAL_DIRECTORY_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_LOCAL_DIRECTORY_MONITOR))
|
||||
#define G_LOCAL_DIRECTORY_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_LOCAL_DIRECTORY_MONITOR, GLocalDirectoryMonitorClass))
|
||||
|
||||
#define G_LOCAL_DIRECTORY_MONITOR_EXTENSION_POINT_NAME "gio-local-directory-monitor"
|
||||
#define G_NFS_DIRECTORY_MONITOR_EXTENSION_POINT_NAME "gio-nfs-directory-monitor"
|
||||
|
Loading…
Reference in New Issue
Block a user