changeset 1743:a297b2bde127

Added some comments that aided in remembering how the combobox code worked on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 03 Jun 2012 19:44:04 +0000
parents cebf830e3da7
children 535e8c19a13d
files os2/dw.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/os2/dw.c	Sun Jun 03 19:09:41 2012 +0000
+++ b/os2/dw.c	Sun Jun 03 19:44:04 2012 +0000
@@ -3138,6 +3138,7 @@
 
                      WinQueryClassName(tmp->window, 99, (PCH)classbuf);
 
+                     /* Slider/Percent */
                      if(strncmp(classbuf, "#38", 4) == 0)
                      {
                         int (API_FUNC valuechangedfunc)(HWND, int, void *) = (int (API_FUNC)(HWND, int, void *))tmp->signalfunction;
@@ -3170,6 +3171,7 @@
 
                            _recursing = 1;
 
+                           /* Combobox */
                            if(id && strncmp(classbuf, "#2", 3)==0)
                            {
                               char *buf2;