]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.151
- new
[packages/vim.git] / 7.0.151
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.151
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.151
11Problem: Buttons in file dialog are not according to Gnome guidelines.
12Solution: Swap Cancel and Open buttons. (Stefano Zacchiroli)
13Files: src/gui_gtk.c
14
15
16*** ../vim-7.0.150/src/gui_gtk.c Tue Oct 10 18:29:21 2006
17--- src/gui_gtk.c Sun Oct 22 15:33:40 2006
18***************
19*** 1293,1300 ****
20 GTK_WINDOW(gui.mainwin),
21 saving ? GTK_FILE_CHOOSER_ACTION_SAVE
22 : GTK_FILE_CHOOSER_ACTION_OPEN,
23- saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
24 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
25 NULL);
26 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
27 (const gchar *)dirbuf);
28--- 1293,1300 ----
29 GTK_WINDOW(gui.mainwin),
30 saving ? GTK_FILE_CHOOSER_ACTION_SAVE
31 : GTK_FILE_CHOOSER_ACTION_OPEN,
32 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
33+ saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
34 NULL);
35 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
36 (const gchar *)dirbuf);
37*** ../vim-7.0.150/src/version.c Tue Oct 24 21:38:16 2006
38--- src/version.c Tue Oct 24 22:01:07 2006
39***************
40*** 668,669 ****
41--- 668,671 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 151,
45 /**/
46
47--
48hundred-and-one symptoms of being an internet addict:
49108. While reading a magazine, you look for the Zoom icon for a better
50 look at a photograph.
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ download, build and distribute -- http://www.A-A-P.org ///
55 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.030902 seconds and 4 git commands to generate.