summaryrefslogtreecommitdiff
path: root/mate-panel/panel-properties-dialog.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-08-04 13:54:48 +0200
committerraveit65 <[email protected]>2016-08-31 15:10:57 +0200
commit3a0f5c2fb9a270c7f987626f2973d12794dfe89c (patch)
treefabc70f4ebc6d7ffa54e442d55b6bd7511d7c444 /mate-panel/panel-properties-dialog.c
parent70e2fc7377121a7b905bb444634f9226a79e649b (diff)
downloadmate-panel-3a0f5c2fb9a270c7f987626f2973d12794dfe89c.tar.bz2
mate-panel-3a0f5c2fb9a270c7f987626f2973d12794dfe89c.tar.xz
Gtk+-2 properties-dialog: use Mate-ColorButton for gtk2 build
Diffstat (limited to 'mate-panel/panel-properties-dialog.c')
-rw-r--r--mate-panel/panel-properties-dialog.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/mate-panel/panel-properties-dialog.c b/mate-panel/panel-properties-dialog.c
index ee7922c3..b45c0188 100644
--- a/mate-panel/panel-properties-dialog.c
+++ b/mate-panel/panel-properties-dialog.c
@@ -36,6 +36,10 @@
#include <libpanel-util/panel-icon-chooser.h>
#include <libpanel-util/panel-show.h>
+#if !GTK_CHECK_VERSION (3, 0, 0)
+#include <libmate-desktop/mate-colorbutton.h>
+#endif
+
#include "nothing.h"
#include "panel-profile.h"
#include "panel-schemas.h"
@@ -330,7 +334,7 @@ panel_properties_dialog_color_changed (PanelPropertiesDialog *dialog,
#if GTK_CHECK_VERSION (3, 0, 0)
GtkColorChooser *color_button)
#else
- GtkColorButton *color_button)
+ MateColorButton *color_button)
#endif
{
#if GTK_CHECK_VERSION (3, 0, 0)
@@ -346,7 +350,7 @@ panel_properties_dialog_color_changed (PanelPropertiesDialog *dialog,
panel_profile_set_background_gdk_rgba (dialog->toplevel, &color);
panel_properties_dialog_opacity_changed (dialog);
#else
- gtk_color_button_get_color (color_button, &color);
+ mate_color_button_get_color (color_button, &color);
panel_profile_set_background_gdk_color (dialog->toplevel, &color);
#endif
}
@@ -372,7 +376,7 @@ panel_properties_dialog_setup_color_button (PanelPropertiesDialog *dialog,
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (dialog->color_button),
&color);
#else
- gtk_color_button_set_color (GTK_COLOR_BUTTON (dialog->color_button),
+ mate_color_button_set_color (MATE_COLOR_BUTTON (dialog->color_button),
&(color.gdk));
#endif
@@ -738,11 +742,11 @@ panel_properties_dialog_update_background_color (PanelPropertiesDialog *dialog,
if (!gdk_color_parse (str_color, &new_color))
return;
- gtk_color_button_get_color (GTK_COLOR_BUTTON (dialog->color_button),
+ mate_color_button_get_color (MATE_COLOR_BUTTON (dialog->color_button),
&old_color);
if (!gdk_color_equal (&old_color, &new_color))
- gtk_color_button_set_color (GTK_COLOR_BUTTON (dialog->color_button),
+ mate_color_button_set_color (MATE_COLOR_BUTTON (dialog->color_button),
&new_color);
#endif
}