]> cygwin.com Git - cygwin-apps/setup.git/commitdiff
2001-11-01 Robert Collins <rbtcollins@hotmail.com>
authorRobert Collins <rbtcollins@hotmail.com>
Thu, 1 Nov 2001 08:05:41 +0000 (08:05 +0000)
committerRobert Collins <rbtcollins@hotmail.com>
Thu, 1 Nov 2001 08:05:41 +0000 (08:05 +0000)
        * choose.cc(list_vscroll): Return 0 as required by win32.
        (list_hscroll): Ditto.
        (list_click): Ditto.

ChangeLog
choose.cc

index 72e304b1d22f8041a02aec6e39b74fb92a22f682..d45bb85ffb5ecc7d3775981f4d67b20bd8a2bc9a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-01  Robert Collins  <rbtcollins@hotmail.com>
+
+       * choose.cc(list_vscroll): Return 0 as required by win32.
+       (list_hscroll): Ditto.
+       (list_click): Ditto.
+
 2001-11-01  Robert Collins  <rbtcollins@hotmail.com>
 
        * argv.cc: Remove.
index 3fb8538be50197631465557e5425689e66f60a9c..a2eef9d88da187143f211a9cc3ad6a5a76f46817 100644 (file)
--- a/choose.cc
+++ b/choose.cc
@@ -390,12 +390,14 @@ static LRESULT CALLBACK
 list_vscroll (HWND hwnd, HWND hctl, UINT code, int pos)
 {
   scroll_common (hwnd, SB_VERT, &scroll_ulc_y, code);
+  return 0;
 }
 
 static LRESULT CALLBACK
 list_hscroll (HWND hwnd, HWND hctl, UINT code, int pos)
 {
   scroll_common (hwnd, SB_HORZ, &scroll_ulc_x, code);
+  return 0;
 }
 
 static LRESULT CALLBACK
@@ -445,6 +447,7 @@ list_click (HWND hwnd, BOOL dblclk, int x, int y, UINT hitCode)
       rect.bottom = rect.top + row_height;
       InvalidateRect (hwnd, &rect, TRUE);
     }
+  return 0;
 }
 
 static LRESULT CALLBACK
This page took 0.033054 seconds and 5 git commands to generate.