libsysprof-analyze: rename mount-path to mount-point

We want to be consistent with SysprofMount in naming.
This commit is contained in:
Christian Hergert
2023-05-19 10:01:02 -07:00
parent d448519c29
commit 7db4540f9a
4 changed files with 27 additions and 25 deletions

View File

@ -28,15 +28,15 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (SysprofMountDevice, sysprof_mount_device, SYSPROF, MOUNT_DEVICE, GObject)
SysprofMountDevice *sysprof_mount_device_new (void);
const char *sysprof_mount_device_get_id (SysprofMountDevice *self);
void sysprof_mount_device_set_id (SysprofMountDevice *self,
const char *id);
const char *sysprof_mount_device_get_mount_path (SysprofMountDevice *self);
void sysprof_mount_device_set_mount_path (SysprofMountDevice *self,
const char *mount_path);
const char *sysprof_mount_device_get_subvolume (SysprofMountDevice *self);
void sysprof_mount_device_set_subvolume (SysprofMountDevice *self,
const char *subvolume);
SysprofMountDevice *sysprof_mount_device_new (void);
const char *sysprof_mount_device_get_id (SysprofMountDevice *self);
void sysprof_mount_device_set_id (SysprofMountDevice *self,
const char *id);
const char *sysprof_mount_device_get_mount_point (SysprofMountDevice *self);
void sysprof_mount_device_set_mount_point (SysprofMountDevice *self,
const char *mount_point);
const char *sysprof_mount_device_get_subvolume (SysprofMountDevice *self);
void sysprof_mount_device_set_subvolume (SysprofMountDevice *self,
const char *subvolume);
G_END_DECLS