summaryrefslogtreecommitdiff
path: root/libmate-desktop/mate-rr-config.h
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-11-08 01:24:39 +0100
committerinfirit <[email protected]>2014-11-28 08:51:50 +0100
commitf7a44ef9fc8c20f9c26350c710efae5cf68a6ff2 (patch)
tree1b29edb5ff6992c524960717aefbf6703ef30553 /libmate-desktop/mate-rr-config.h
parent3a2edbb177ad591f66ed3adf756390837165705c (diff)
downloadmate-desktop-f7a44ef9fc8c20f9c26350c710efae5cf68a6ff2.tar.bz2
mate-desktop-f7a44ef9fc8c20f9c26350c710efae5cf68a6ff2.tar.xz
MateRROutputInfo: rename boolean accessors
Rename get_connected() to is_connected() and get_active() to is_active(), following the normal convention. Based on gnome-desktop commit: 46d48ab6ec256498d0dd0a5c97c0388381971cbf From: Giovanni Campagna <[email protected]>
Diffstat (limited to 'libmate-desktop/mate-rr-config.h')
-rw-r--r--libmate-desktop/mate-rr-config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmate-desktop/mate-rr-config.h b/libmate-desktop/mate-rr-config.h
index cd343ab..85c8c9f 100644
--- a/libmate-desktop/mate-rr-config.h
+++ b/libmate-desktop/mate-rr-config.h
@@ -61,7 +61,7 @@ GType mate_rr_output_info_get_type (void);
char *mate_rr_output_info_get_name (MateRROutputInfo *self);
-gboolean mate_rr_output_info_get_active (MateRROutputInfo *self);
+gboolean mate_rr_output_info_is_active (MateRROutputInfo *self);
void mate_rr_output_info_set_active (MateRROutputInfo *self, gboolean active);
@@ -74,7 +74,7 @@ void mate_rr_output_info_set_refresh_rate (MateRROutputInfo *self, int rate);
MateRRRotation mate_rr_output_info_get_rotation (MateRROutputInfo *self);
void mate_rr_output_info_set_rotation (MateRROutputInfo *self, MateRRRotation rotation);
-gboolean mate_rr_output_info_get_connected (MateRROutputInfo *self);
+gboolean mate_rr_output_info_is_connected (MateRROutputInfo *self);
void mate_rr_output_info_get_vendor (MateRROutputInfo *self, gchar* vendor);
guint mate_rr_output_info_get_product (MateRROutputInfo *self);
guint mate_rr_output_info_get_serial (MateRROutputInfo *self);