Changeset 878


Ignore:
Timestamp:
2000-01-27T12:46:16+13:00 (24 years ago)
Author:
sjboddie
Message:

wrap every second button now (was every third)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/browsetools.cpp

    r778 r878  
    2929/*
    3030   $Log$
     31   Revision 1.35  2000/01/26 23:46:16  sjboddie
     32   wrap every second button now (was every third)
     33
    3134   Revision 1.34  1999/11/09 02:28:47  sjboddie
    3235   fixed minor bug in expanded contents
     
    205208    int count = 0;
    206209    while (here != end) {
    207       if ((count != 0) && ((count % 3) == 0)) textout << "<br>\n";
     210      if ((count != 0) && ((count % 2) == 0)) textout << "<br>\n";
    208211      textout << outconvert << disp << *here;
    209212      count ++;
Note: See TracChangeset for help on using the changeset viewer.