summaryrefslogtreecommitdiff
path: root/mate-panel/panel-profile.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-05 20:41:54 +0300
committermonsta <[email protected]>2016-01-05 20:41:54 +0300
commit20b45d18e1bdf2d86c406159fce5b39b55e55305 (patch)
tree3e8f44d53337c819c525defda857b9ad15999426 /mate-panel/panel-profile.c
parentc0ee3dae38adf305b4e31a0c8c2d1da532f1a4e5 (diff)
downloadmate-panel-20b45d18e1bdf2d86c406159fce5b39b55e55305.tar.bz2
mate-panel-20b45d18e1bdf2d86c406159fce5b39b55e55305.tar.xz
profile: rename get/set rgba functions for consistency
Diffstat (limited to 'mate-panel/panel-profile.c')
-rw-r--r--mate-panel/panel-profile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-panel/panel-profile.c b/mate-panel/panel-profile.c
index 9a84eaeb..06eddc7b 100644
--- a/mate-panel/panel-profile.c
+++ b/mate-panel/panel-profile.c
@@ -240,7 +240,7 @@ panel_profile_set_background_color (PanelToplevel *toplevel,
#endif
{
#if GTK_CHECK_VERSION (3, 0, 0)
- panel_profile_set_background_gdk_rgba_color (toplevel, color);
+ panel_profile_set_background_gdk_rgba (toplevel, color);
#else
panel_profile_set_background_gdk_color (toplevel, &color->gdk);
panel_profile_set_background_opacity (toplevel, color->alpha);
@@ -256,7 +256,7 @@ panel_profile_get_background_color (PanelToplevel *toplevel,
#endif
{
#if GTK_CHECK_VERSION (3, 0, 0)
- panel_profile_get_background_gdk_rgba_color (toplevel, color);
+ panel_profile_get_background_gdk_rgba (toplevel, color);
#else
panel_profile_get_background_gdk_color (toplevel, &(color->gdk));
color->alpha = panel_profile_get_background_opacity (toplevel);
@@ -265,7 +265,7 @@ panel_profile_get_background_color (PanelToplevel *toplevel,
#if GTK_CHECK_VERSION (3, 0, 0)
void
-panel_profile_set_background_gdk_rgba_color (PanelToplevel *toplevel,
+panel_profile_set_background_gdk_rgba (PanelToplevel *toplevel,
GdkRGBA *color)
{
char *color_str;
@@ -278,7 +278,7 @@ panel_profile_set_background_gdk_rgba_color (PanelToplevel *toplevel,
}
void
-panel_profile_get_background_gdk_rgba_color (PanelToplevel *toplevel,
+panel_profile_get_background_gdk_rgba (PanelToplevel *toplevel,
GdkRGBA *color)
{
char *color_str;