summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2011-02-17 17:26:29 -0500
committerCosimo Cecchi <cosimoc@gnome.org>2011-02-17 17:27:11 -0500
commit936a1749bb79217decc47ec2e12c7f3c40823f97 (patch)
treebe1173f52cc81f9a3905586e54cb216c28311884
parentcff594aeba0cb62f3316eb8a14114091ca4c6d11 (diff)
downloadnautilus-936a1749bb79217decc47ec2e12c7f3c40823f97.tar.gz
window: fix some missing signal handlers/overrides
-rw-r--r--src/nautilus-window.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 6df340a27..a1252521c 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -1508,6 +1508,12 @@ nautilus_window_sync_title (NautilusWindow *window,
char *full_title;
char *window_title;
+ if (NAUTILUS_WINDOW_CLASS (G_OBJECT_GET_CLASS (window))->sync_title != NULL) {
+ NAUTILUS_WINDOW_CLASS (G_OBJECT_GET_CLASS (window))->sync_title (window, slot);
+
+ return;
+ }
+
if (slot == window->details->active_pane->active_slot) {
/* if spatial mode is default, we keep "File Browser" in the window title
* to recognize browser windows. Otherwise, we default to the directory name.
@@ -2220,6 +2226,7 @@ nautilus_window_class_init (NautilusWindowClass *class)
class->reload = nautilus_window_reload;
class->go_up = nautilus_window_go_up_signal;
+ class->prompt_for_location = nautilus_window_prompt_for_location;
g_signal_connect_swapped (nautilus_preferences,
"changed::" NAUTILUS_PREFERENCES_MOUSE_BACK_BUTTON,