Changeset 17203


Ignore:
Timestamp:
Sep 5, 2001, 1:57:57 PM (24 years ago)
Author:
bird
Message:

Corrected empty parameter description bug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/tools/database/StateUpd.cpp

    r14515 r17203  
    1 /* $Id: StateUpd.cpp,v 1.32 2000-08-02 20:20:35 bird Exp $
     1/* $Id: StateUpd.cpp,v 1.33 2001-09-05 11:57:57 bird Exp $
    22 *
    33 * StateUpd - Scans source files for API functions and imports data on them.
     
    17331733 * @param     iEnd       Index of last line.
    17341734 * @param     apszLines  Array lines.
    1735  * @param     pszStart   Pointer to char to start at (into papszLines[iStart] of course!)
     1735 * @param     pszStart   Pointer to char to start at (into papszLines[iStart] of course!). Defaults to start of line iStart.
    17361736 * @status    completely impelmented.
    17371737 * @author    knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
     
    17591759
    17601760        /* Anything left of the area to copy? */
    1761         if (iStart <= iEnd)
     1761        if (iStart <= iEnd && (!pszStart || *psz != '@')) /* last test is fix for parameters without description. */
    17621762        {
    17631763            /*
Note: See TracChangeset for help on using the changeset viewer.