summaryrefslogtreecommitdiff
path: root/pluma/dialogs
diff options
context:
space:
mode:
authorV.Barkov <[email protected]>2016-11-24 20:18:27 +0300
committerV.Barkov <[email protected]>2016-11-24 20:18:27 +0300
commit2314b3828cbe540d65ba517c32872476417501a6 (patch)
tree389ad57d86d0c3b1ecd6498e7327cbc05ebfbd7e /pluma/dialogs
parent9f79aa764fa8b31b204f79ca452502204bbfa09d (diff)
downloadpluma-2314b3828cbe540d65ba517c32872476417501a6.tar.bz2
pluma-2314b3828cbe540d65ba517c32872476417501a6.tar.xz
Fixed formatting [2]
Diffstat (limited to 'pluma/dialogs')
-rwxr-xr-xpluma/dialogs/pluma-search-dialog.c12
-rwxr-xr-xpluma/dialogs/pluma-search-dialog.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/pluma/dialogs/pluma-search-dialog.c b/pluma/dialogs/pluma-search-dialog.c
index 6263b937..a77701c0 100755
--- a/pluma/dialogs/pluma-search-dialog.c
+++ b/pluma/dialogs/pluma-search-dialog.c
@@ -68,7 +68,7 @@ struct _PlumaSearchDialogPrivate
GtkWidget *replace_entry;
GtkWidget *replace_text_entry;
GtkWidget *match_case_checkbutton;
- GtkWidget *match_regex_checkbutton;
+ GtkWidget *match_regex_checkbutton;
GtkWidget *entire_word_checkbutton;
GtkWidget *backwards_checkbutton;
GtkWidget *wrap_around_checkbutton;
@@ -353,7 +353,7 @@ pluma_search_dialog_init (PlumaSearchDialog *dlg)
"search_label", &dlg->priv->search_label,
"replace_with_label", &dlg->priv->replace_label,
"match_case_checkbutton", &dlg->priv->match_case_checkbutton,
- "match_regex_checkbutton",&dlg->priv->match_regex_checkbutton,
+ "match_regex_checkbutton",&dlg->priv->match_regex_checkbutton,
"entire_word_checkbutton", &dlg->priv->entire_word_checkbutton,
"search_backwards_checkbutton", &dlg->priv->backwards_checkbutton,
"wrap_around_checkbutton", &dlg->priv->wrap_around_checkbutton,
@@ -588,18 +588,18 @@ void
pluma_search_dialog_set_match_regex (PlumaSearchDialog *dialog,
gboolean match_case)
{
- g_return_if_fail (PLUMA_IS_SEARCH_DIALOG (dialog));
+ g_return_if_fail (PLUMA_IS_SEARCH_DIALOG (dialog));
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->priv->match_regex_checkbutton),
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->priv->match_regex_checkbutton),
match_case);
}
gboolean
pluma_search_dialog_get_match_regex (PlumaSearchDialog *dialog)
{
- g_return_val_if_fail (PLUMA_IS_SEARCH_DIALOG (dialog), FALSE);
+ g_return_val_if_fail (PLUMA_IS_SEARCH_DIALOG (dialog), FALSE);
- return gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->match_regex_checkbutton));
+ return gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->match_regex_checkbutton));
}
void
diff --git a/pluma/dialogs/pluma-search-dialog.h b/pluma/dialogs/pluma-search-dialog.h
index e6ebe8dc..e397b258 100755
--- a/pluma/dialogs/pluma-search-dialog.h
+++ b/pluma/dialogs/pluma-search-dialog.h
@@ -112,7 +112,7 @@ void pluma_search_dialog_set_match_case (PlumaSearchDialog *dialog,
gboolean pluma_search_dialog_get_match_case (PlumaSearchDialog *dialog);
void pluma_search_dialog_set_match_regex (PlumaSearchDialog *dialog,
- gboolean match_case);
+ gboolean match_case);
gboolean pluma_search_dialog_get_match_regex (PlumaSearchDialog *dialog);
void pluma_search_dialog_set_entire_word (PlumaSearchDialog *dialog,