Ignore:
Timestamp:
2008-11-14T09:58:57+13:00 (15 years ago)
Author:
mdewsnip
Message:

Moved hard-wired usage of space.gif into a macro, so it can be overridden on a collection-specific basis. By Jeffrey at DL Consulting Ltd.

Location:
gsdl/trunk/runtime-src/src/recpt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/src/recpt/datelistbrowserclass.cpp

    r13017 r17860  
    8282    itab = tab.getint();
    8383    if (colnumber > 0)
    84       textout << outconvert << "<img alt=\"\" src=\"_httpimg_/space.gif\" width=\"" << (itab*colnumber) << "\"/>";
     84      textout << outconvert << "<img alt=\"\" src=\"_httpiconspace_\" width=\"" << (itab*colnumber) << "\"/>";
    8585    textout << outconvert << "</td><td>";
    8686  }
  • gsdl/trunk/runtime-src/src/recpt/hlistbrowserclass.cpp

    r16060 r17860  
    126126    itab = tab.getint();
    127127    if (colnumber > 0) textout << outconvert << disp
    128                    << "<img alt=\"\" src=\"_httpimg_/space.gif\" width=\""
     128                   << "<img alt=\"\" src=\"_httpiconspace_\" width=\""
    129129                   << (itab*colnumber) << "\"/>";
    130130    textout << outconvert << "</td>\n";
  • gsdl/trunk/runtime-src/src/recpt/vlistbrowserclass.cpp

    r16065 r17860  
    128128    itab = tab.getint();
    129129    if (colnumber > 0) textout << outconvert << disp
    130                    << "<td><img alt=\"\" src=\"_httpimg_/space.gif\" width=\""
     130                   << "<td><img alt=\"\" src=\"_httpiconspace_\" width=\""
    131131                   << (itab*colnumber) << "\"/></td>";
    132132  } else {
     
    181181    itab = tab.getint();
    182182    if (colnumber > 0) textout << outconvert << disp
    183                    << "<td><img alt=\"\" src=\"_httpimg_/space.gif\" width=\""
     183                   << "<td><img alt=\"\" src=\"_httpiconspace_\" width=\""
    184184                   << (itab*colnumber) << "\"/></td>";
    185185    textout << outconvert << "<td>";
Note: See TracChangeset for help on using the changeset viewer.