summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@codefactory.se>2002-03-23 15:54:50 +0000
committerMikael Hallendal <hallski@src.gnome.org>2002-03-23 15:54:50 +0000
commita8f075024ea48e0903e4d793aeb54e43c5e10e7c (patch)
tree72cbcc0dffc46dbe6c8c01e294f02946dab6a63c
parentbc634fd2566a5be9617c1b8c59364506da020648 (diff)
downloadyelp-a8f075024ea48e0903e4d793aeb54e43c5e10e7c.tar.gz
commented out the Quit-option, we might not want to have it around because
2002-03-23 Mikael Hallendal <micke@codefactory.se> * src/yelp-window.c: commented out the Quit-option, we might not want to have it around because you often use Yelp in another way (ie. klicking Help in an application). Fixes #75081
-rw-r--r--ChangeLog4
-rw-r--r--src/yelp-window.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e9d64b3..340e7a13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2002-03-23 Mikael Hallendal <micke@codefactory.se>
+ * src/yelp-window.c: commented out the Quit-option, we might not
+ want to have it around because you often use Yelp in another way
+ (ie. klicking Help in an application). Fixes #75081
+
* src/yelp-view-toc.c (yelp_view_toc_open_url): scroll to the
beginning of the document after reading it. Fixes #72965
diff --git a/src/yelp-window.c b/src/yelp-window.c
index 481f37b1..b733def0 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -138,7 +138,7 @@ static GtkItemFactoryEntry menu_items[] = {
{N_("/_File"), NULL, 0, 0, "<Branch>"},
{N_("/File/_New window"), NULL, yw_new_window_cb, 0, "<StockItem>", GTK_STOCK_NEW },
{N_("/File/_Close window"), NULL, yw_close_window_cb, 0, "<StockItem>", GTK_STOCK_CLOSE },
- {N_("/File/_Quit"), NULL, yw_exit_cb, 0, "<StockItem>", GTK_STOCK_QUIT },
+/* {N_("/File/_Quit"), NULL, yw_exit_cb, 0, "<StockItem>", GTK_STOCK_QUIT }, */
{N_("/_Go"), NULL, 0, 0, "<Branch>"},
{N_("/Go/_Back"), NULL, yw_history_go_cb, YELP_WINDOW_ACTION_BACK, "<StockItem>", GTK_STOCK_GO_BACK },
{N_("/Go/_Forward"), NULL, yw_history_go_cb, YELP_WINDOW_ACTION_FORWARD, "<StockItem>", GTK_STOCK_GO_FORWARD },