[gnome-commander] GnomeCmdFileList: drop surplus code
- From: Piotr Eljasiak <epiotr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] GnomeCmdFileList: drop surplus code
- Date: Thu, 18 Aug 2011 18:19:42 +0000 (UTC)
commit ecbef809617d21f6b39848d4ca683a6fce39b32b
Author: Piotr Eljasiak <epiotr src gnome org>
Date: Thu Aug 18 20:18:07 2011 +0200
GnomeCmdFileList: drop surplus code
src/gnome-cmd-file-list.cc | 28 +++++++++++-----------------
1 files changed, 11 insertions(+), 17 deletions(-)
---
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
index d4a6d2d..7d6d0cf 100755
--- a/src/gnome-cmd-file-list.cc
+++ b/src/gnome-cmd-file-list.cc
@@ -407,20 +407,6 @@ static void on_selpat_hide (GtkWidget *dialog, GnomeCmdFileList *fl)
}
-inline void show_selpat_dialog (GnomeCmdFileList *fl, gboolean mode)
-{
- if (fl->priv->selpat_dialog) return;
-
- GtkWidget *dialog = gnome_cmd_patternsel_dialog_new (fl, mode);
-
- g_object_ref (dialog);
- g_signal_connect (dialog, "hide", G_CALLBACK (on_selpat_hide), fl);
- gtk_widget_show (dialog);
-
- fl->priv->selpat_dialog = dialog;
-}
-
-
// given a GnomeFileList, returns the upper-left corner of the selected file
static void get_focus_row_coordinates (GnomeCmdFileList *fl, gint &x, gint &y, gint &width, gint &height)
{
@@ -2109,7 +2095,15 @@ void gnome_cmd_file_list_show_properties_dialog (GnomeCmdFileList *fl)
void gnome_cmd_file_list_show_selpat_dialog (GnomeCmdFileList *fl, gboolean mode)
{
- show_selpat_dialog (fl, mode);
+ if (fl->priv->selpat_dialog) return;
+
+ GtkWidget *dialog = gnome_cmd_patternsel_dialog_new (fl, mode);
+
+ g_object_ref (dialog);
+ g_signal_connect (dialog, "hide", G_CALLBACK (on_selpat_hide), fl);
+ gtk_widget_show (dialog);
+
+ fl->priv->selpat_dialog = dialog;
}
@@ -2357,12 +2351,12 @@ gboolean GnomeCmdFileList::key_pressed(GdkEventKey *event)
case GDK_KP_Add:
case GDK_plus:
case GDK_equal:
- show_selpat_dialog (this, TRUE);
+ gnome_cmd_file_list_show_selpat_dialog (this, TRUE);
return TRUE;
case GDK_KP_Subtract:
case GDK_minus:
- show_selpat_dialog (this, FALSE);
+ gnome_cmd_file_list_show_selpat_dialog (this, FALSE);
return TRUE;
case GDK_KP_Multiply:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]