r794 - in /trunk/packages/vim: debian/changelog patches/gui_gtk.c-file_chooser_hig.diff patches/series

zack at users.alioth.debian.org zack at users.alioth.debian.org
Sun Oct 22 10:24:43 UTC 2006


Author: zack
Date: Sun Oct 22 10:24:42 2006
New Revision: 794

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=794
Log:
patch for the gtk file selection dialog so that the button order matches the gnome human interface guidelines

Added:
    trunk/packages/vim/patches/gui_gtk.c-file_chooser_hig.diff
Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/patches/series

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=794&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sun Oct 22 10:24:42 2006
@@ -15,8 +15,11 @@
   [ Stefano Zacchiroli ]
   * Added patch dosini.vim-hash_comment.diff which add support for # comments
     in dosini syntax highlighting, thanks to Adeodato Simó. (closes: #378952)
-
- -- Stefano Zacchiroli <zack at debian.org>  Sun, 22 Oct 2006 11:37:30 +0200
+  * Added patch gui_gtk.c-file_chooser_hig.diff which change the button order
+    in the GTK+ file choose dialog so that it matches the GNOME Human
+    Interface Guidelines. (closes: #367639, #368597)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Sun, 22 Oct 2006 11:54:31 +0200
 
 vim (1:7.0-122+1) unstable; urgency=medium
 

Added: trunk/packages/vim/patches/gui_gtk.c-file_chooser_hig.diff
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/gui_gtk.c-file_chooser_hig.diff?rev=794&op=file
==============================================================================
--- trunk/packages/vim/patches/gui_gtk.c-file_chooser_hig.diff (added)
+++ trunk/packages/vim/patches/gui_gtk.c-file_chooser_hig.diff Sun Oct 22 10:24:42 2006
@@ -1,0 +1,14 @@
+Index: vim/src/gui_gtk.c
+===================================================================
+--- vim/src/gui_gtk.c.orig
++++ vim/src/gui_gtk.c
+@@ -1293,8 +1293,8 @@
+ 	    GTK_WINDOW(gui.mainwin),
+ 	    saving ? GTK_FILE_CHOOSER_ACTION_SAVE
+ 					   : GTK_FILE_CHOOSER_ACTION_OPEN,
+-	    saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
+ 	    GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
++	    saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
+ 	    NULL);
+     gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
+ 						       (const gchar *)dirbuf);

Modified: trunk/packages/vim/patches/series
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/series?rev=794&op=diff
==============================================================================
--- trunk/packages/vim/patches/series (original)
+++ trunk/packages/vim/patches/series Sun Oct 22 10:24:42 2006
@@ -17,3 +17,4 @@
 dosini.vim-hash_comment.diff -p0
 html.vim-syntax_spell.diff -p0
 changelog.vim-ftplugin_buffer-split.diff -p0
+gui_gtk.c-file_chooser_hig.diff -p0




More information about the pkg-vim-maintainers mailing list