Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-04-18 22:28:07 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-04-18 22:28:07 (GMT)
commitbde20b7777d4230eca9fb8a7a7bd9efe700e78e9 (patch)
tree8589995c920f3370bd20ab76ac70eed415482b71
parent1a8a7520ef13e6d7a2f38e11e80c01cf76825d50 (diff)
Fix build error and small problem on application exit
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-application.c4
-rw-r--r--shell/ev-document-types.c2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d827d3a..1555090 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-04-19 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+ * shell/ev-application.c: (ev_application_open):
+ * shell/ev-document-types.c:
+
+ Fix build error and small problem with application exit
+
+2005-04-19 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
* thumbnailer/Makefile.am:
* thumbnailer/evince-thumbnailer-djvu.schemas:
* thumbnailer/evince-thumbnailer-dvi.schemas:
diff --git a/shell/ev-application.c b/shell/ev-application.c
index e24e823..43c4068 100644
--- a/shell/ev-application.c
+++ b/shell/ev-application.c
@@ -200,6 +200,10 @@ ev_application_open (EvApplication *application, GError *err)
ev_window_open (ev_window, uri);
gtk_widget_show (GTK_WIDGET (ev_window));
g_free (uri);
+
+ } else {
+ if (!GTK_WIDGET_VISIBLE (ev_window))
+ gtk_widget_destroy (GTK_WIDGET (ev_window));
}
gtk_widget_destroy (GTK_WIDGET (chooser));
diff --git a/shell/ev-document-types.c b/shell/ev-document-types.c
index cc7734f..2d64594 100644
--- a/shell/ev-document-types.c
+++ b/shell/ev-document-types.c
@@ -55,7 +55,7 @@ const EvDocumentType document_types[] = {
#ifdef ENABLE_DJVU
/* djvu: */
- {"image/vnd.djvu", djvu_document_get_type),
+ {"image/vnd.djvu", djvu_document_get_type},
#endif
#ifdef ENABLE_DVI