[gnome-commander] GnomeCmdSelectionProfileComponent: store match_case in profile
- From: Piotr Eljasiak <epiotr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] GnomeCmdSelectionProfileComponent: store match_case in profile
- Date: Sat, 2 Jul 2011 21:50:59 +0000 (UTC)
commit 2cba190e3be4cee26e208fa1a319bb4af6f99d30
Author: Piotr Eljasiak <epiotr src gnome org>
Date: Sat Jul 2 23:37:45 2011 +0200
GnomeCmdSelectionProfileComponent: store match_case in profile
src/gnome-cmd-selection-profile-component.cc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/src/gnome-cmd-selection-profile-component.cc b/src/gnome-cmd-selection-profile-component.cc
index b91548c..2ae61fb 100755
--- a/src/gnome-cmd-selection-profile-component.cc
+++ b/src/gnome-cmd-selection-profile-component.cc
@@ -223,6 +223,7 @@ void GnomeCmdSelectionProfileComponent::copy()
profile.max_depth = gtk_combo_box_get_active (GTK_COMBO_BOX (priv->recurse_combo)) - 1;
stringify(profile.text_pattern, gtk_combo_box_get_active_text (GTK_COMBO_BOX (priv->find_text_combo)));
profile.content_search = !profile.text_pattern.empty() && gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->find_text_check));
+ profile.match_case = profile.content_search && gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->case_check));
}
@@ -233,6 +234,7 @@ void GnomeCmdSelectionProfileComponent::copy(GnomeCmdData::Selection &profile)
profile.max_depth = gtk_combo_box_get_active (GTK_COMBO_BOX (priv->recurse_combo)) - 1;
stringify(profile.text_pattern, gtk_combo_box_get_active_text (GTK_COMBO_BOX (priv->find_text_combo)));
profile.content_search = !profile.text_pattern.empty() && gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->find_text_check));
+ profile.match_case = profile.content_search && gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->case_check));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]