summaryrefslogtreecommitdiff
path: root/libmate-desktop/mate-colorseldialog.c
diff options
context:
space:
mode:
authorLaurent Napias <[email protected]>2019-06-29 12:02:22 +0200
committerZenWalker <[email protected]>2019-07-03 20:46:07 +0200
commita0da3060df54a69f38b76dfd52c137700bdac96e (patch)
tree753a69f38cb643406219f4e8d6420dfb45ebd62b /libmate-desktop/mate-colorseldialog.c
parentfffd1db81fa1407ef933fa39aafb76bcdc6d86b2 (diff)
downloadmate-desktop-a0da3060df54a69f38b76dfd52c137700bdac96e.tar.bz2
mate-desktop-a0da3060df54a69f38b76dfd52c137700bdac96e.tar.xz
Remove trailing whitespaces
Diffstat (limited to 'libmate-desktop/mate-colorseldialog.c')
-rw-r--r--libmate-desktop/mate-colorseldialog.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libmate-desktop/mate-colorseldialog.c b/libmate-desktop/mate-colorseldialog.c
index bfde10d..2516be1 100644
--- a/libmate-desktop/mate-colorseldialog.c
+++ b/libmate-desktop/mate-colorseldialog.c
@@ -21,7 +21,7 @@
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
* file for a list of people on the GTK+ Team. See the ChangeLog
* files for a list of changes. These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
*/
#include "config.h"
#include "private.h"
@@ -137,11 +137,11 @@ mate_color_selection_dialog_init (MateColorSelectionDialog *colorseldiag)
colorseldiag->colorsel = mate_color_selection_new ();
gtk_container_set_border_width (GTK_CONTAINER (colorseldiag->colorsel), 5);
- mate_color_selection_set_has_palette (MATE_COLOR_SELECTION(colorseldiag->colorsel), FALSE);
+ mate_color_selection_set_has_palette (MATE_COLOR_SELECTION(colorseldiag->colorsel), FALSE);
mate_color_selection_set_has_opacity_control (MATE_COLOR_SELECTION(colorseldiag->colorsel), FALSE);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (colorseldiag))), colorseldiag->colorsel);
gtk_widget_show (colorseldiag->colorsel);
-
+
colorseldiag->cancel_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
GTK_STOCK_CANCEL,
GTK_RESPONSE_CANCEL);
@@ -149,9 +149,9 @@ mate_color_selection_dialog_init (MateColorSelectionDialog *colorseldiag)
colorseldiag->ok_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
GTK_STOCK_OK,
GTK_RESPONSE_OK);
-
+
gtk_widget_grab_default (colorseldiag->ok_button);
-
+
colorseldiag->help_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
GTK_STOCK_HELP,
GTK_RESPONSE_HELP);
@@ -168,14 +168,14 @@ GtkWidget*
mate_color_selection_dialog_new (const gchar *title)
{
MateColorSelectionDialog *colorseldiag;
-
+
colorseldiag = g_object_new (MATE_TYPE_COLOR_SELECTION_DIALOG, NULL);
if (title)
gtk_window_set_title (GTK_WINDOW (colorseldiag), title);
gtk_window_set_resizable (GTK_WINDOW (colorseldiag), FALSE);
-
+
return GTK_WIDGET (colorseldiag);
}