mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-07 00:18:44 +02: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:
@@ -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"
|
||||
|
Reference in New Issue
Block a user