Ignore:
Timestamp:
Jun 28, 1999, 5:46:28 PM (26 years ago)
Author:
cbratschi
Message:

bug fixes (unicode) and improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/trackbar.c

    r219 r236  
    1 /* $Id: trackbar.c,v 1.8 1999-06-26 14:20:32 cbratschi Exp $ */
     1/* $Id: trackbar.c,v 1.9 1999-06-28 15:46:28 cbratschi Exp $ */
    22/*
    33 * Trackbar control
     
    13841384  j = hi;
    13851385  x = list[(lo+hi)/2];
    1386   while (i <= j)
     1386  do
    13871387  {
    13881388    while (list[i] < x) i++;
     
    13961396      j--;
    13971397    }
    1398   }
     1398  } while (i <= j);
    13991399  if (lo < j) TRACKBAR_QuickSort(list,lo,j);
    14001400  if (i < hi) TRACKBAR_QuickSort(list,i,hi);
Note: See TracChangeset for help on using the changeset viewer.