summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Schwinn <alexxcons@xfce.org>2020-05-16 22:06:13 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2020-05-17 23:04:41 +0200
commitdf258649f89442af3b6a2a8babe1f6f6d4bbfa67 (patch)
treeefe88f7d878be5c822c51790d4654e033cf066ff
parent72c64c1b313acc55d0ac9bd369c0a19fdaee8e38 (diff)
downloadthunar-df258649f89442af3b6a2a8babe1f6f6d4bbfa67.tar.gz
removed unused signal (back) on thunar-window (Bug #16654)
-rw-r--r--thunar/thunar-window.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
index 502ce38e..7974b797 100644
--- a/thunar/thunar-window.c
+++ b/thunar/thunar-window.c
@@ -265,7 +265,6 @@ struct _ThunarWindowClass
GtkWindowClass __parent__;
/* internal action signals */
- gboolean (*back) (ThunarWindow *window);
gboolean (*reload) (ThunarWindow *window,
gboolean reload_info);
gboolean (*zoom_in) (ThunarWindow *window);
@@ -491,23 +490,6 @@ G_GNUC_END_IGNORE_DEPRECATIONS
EXO_PARAM_READWRITE));
/**
- * ThunarWindow::back:
- * @window : a #ThunarWindow instance.
- *
- * Emitted whenever the user requests to go to the
- * previous visited folder. This is an internal
- * signal used to bind the action to keys.
- **/
- window_signals[BACK] =
- g_signal_new (I_("back"),
- G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
- G_STRUCT_OFFSET (ThunarWindowClass, back),
- g_signal_accumulator_true_handled, NULL,
- _thunar_marshal_BOOLEAN__VOID,
- G_TYPE_BOOLEAN, 0);
-
- /**
* ThunarWindow::reload:
* @window : a #ThunarWindow instance.
*