Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@src.gnome.org>2005-06-04 23:21:20 (GMT)
committer Jonathan Blandford <jrb@src.gnome.org>2005-06-04 23:21:20 (GMT)
commitfe9629b9e072a7a53cc886ed20194e97a48b7865 (patch)
treeae4aa4881491ba5d8d76362f36201530f7ff2503
parent8d43cc37d782fdaa65c8f68b94502ef62382fc6c (diff)
fix compilation.
* shell/ev-window.c (ev_window_cmd_file_properties): fix compilation.
-rw-r--r--ChangeLog5
-rw-r--r--data/evince-ui.xml1
-rw-r--r--shell/ev-window.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 361687e..f3b8fb5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 4 19:20:57 2005 Jonathan Blandford <jrb@redhat.com>
+
+ * shell/ev-window.c (ev_window_cmd_file_properties): fix
+ compilation.
+
2005-06-05 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-view.c: (view_set_adjustment_values):
diff --git a/data/evince-ui.xml b/data/evince-ui.xml
index a670da4..e519b85 100644
--- a/data/evince-ui.xml
+++ b/data/evince-ui.xml
@@ -29,6 +29,7 @@
<menuitem name="ViewSidebarMenu" action="ViewSidebar"/>
<separator/>
<menuitem name="ViewFullscreenMenu" action="ViewFullscreen"/>
+ <menuitem name="ViewPresentationMenu" action="ViewPresentation"/>
<separator/>
<menuitem name="ViewContinuousMenu" action="ViewContinuous"/>
<menuitem name="ViewDualMenu" action="ViewDual"/>
diff --git a/shell/ev-window.c b/shell/ev-window.c
index aeceba8..062dc5d 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1202,7 +1202,7 @@ ev_window_cmd_file_properties (GtkAction *action, EvWindow *ev_window)
info = ev_document_get_info (document);
dialog = ev_properties_new (info, fonts);
- gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW(window));
+ gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (ev_window));
gtk_dialog_run (dialog);
gtk_widget_destroy (GTK_WIDGET (dialog));
ev_document_info_free (info);