home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.0.115 < prev    next >
Encoding:
Internet Message Format  |  2001-12-31  |  2.0 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.115
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.115 (extra)
  11. Problem:    Win32: When using a dialog with a textfield it cannot scroll the
  12.         text.
  13. Solution:   Add ES_AUTOHSCROLL to the textfield style. (Pedro Gomes)
  14. Files:        src/gui_w32.c
  15.  
  16.  
  17. *** ../vim60.114/src/gui_w32.c    Wed Sep 19 14:43:49 2001
  18. --- src/gui_w32.c    Tue Jan  1 19:23:08 2002
  19. ***************
  20. *** 2626,2632 ****
  21.       /* Edit box */
  22.       if (textfield != NULL)
  23.       {
  24. !     p = add_dialog_element(p, ES_LEFT | WS_TABSTOP | WS_BORDER,
  25.           PixelToDialogX(2 * dlgPaddingX),
  26.           PixelToDialogY(2 * dlgPaddingY + msgheight),
  27.           PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
  28. --- 2626,2632 ----
  29.       /* Edit box */
  30.       if (textfield != NULL)
  31.       {
  32. !     p = add_dialog_element(p, ES_LEFT|ES_AUTOHSCROLL|WS_TABSTOP|WS_BORDER,
  33.           PixelToDialogX(2 * dlgPaddingX),
  34.           PixelToDialogY(2 * dlgPaddingY + msgheight),
  35.           PixelToDialogX(dlgwidth - 4 * dlgPaddingX),
  36. *** ../vim60.114/src/version.c    Tue Jan  1 15:16:42 2002
  37. --- src/version.c    Tue Jan  1 19:24:13 2002
  38. ***************
  39. *** 608,609 ****
  40. --- 608,611 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     115,
  44.   /**/
  45.  
  46. -- 
  47.        When danger reared its ugly head,
  48.        He bravely turned his tail and fled
  49.        Yes, Brave Sir Robin turned about
  50.        And gallantly he chickened out
  51.        Bravely taking to his feet
  52.        He beat a very brave retreat
  53.        Bravest of the brave Sir Robin
  54.        Petrified of being dead
  55.        Soiled his pants then brave Sir Robin
  56.        Turned away and fled.
  57.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  58.  
  59.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  60. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  61.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  62.