Ignore:
Timestamp:
Jan 8, 2001, 6:54:48 PM (25 years ago)
Author:
umoeller
Message:

Final changes for 0.9.7, i hope...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/cnrh.c

    r17 r21  
    6363
    6464/*
     65 *@@category: Helpers\PM helpers\Container helpers
     66 *      See cnrh.c.
     67 */
     68
     69/*
    6570 *@@category: Helpers\PM helpers\Container helpers\Details view helpers
     71 *      these functions aid you in setting up the FIELDINFO structures
     72 *      for a container Details view. Use cnrhSetFieldInfos for that.
    6673 */
    6774
     
    343350/*
    344351 *@@category: Helpers\PM helpers\Container helpers\Record core helpers
     352 *      functions for allocating and inserting records more easily.
     353 *
     354 *      Use cnrhAllocRecords first to allocate, then cnrhInsertRecords
     355 *      to insert the records.
    345356 */
    346357
     
    742753/*
    743754 *@@category: Helpers\PM helpers\Container helpers\View management
     755 *      functions for easily managing container views.
     756 *
     757 *      Most importantly, this has the BEGIN_CNRINFO and END_CNRINFO
     758 *      macros which make CNRINFO handling easier. Also see
     759 *      cnrhSetView for that.
    744760 */
    745761
     
    812828 *
    813829 *      With fl, specify any or none of the following:
     830 *
    814831 *      --  FRFP_RIGHTSPLITWINDOW: test right split Details view
    815832 *              instead of main cnr.
     833 *
    816834 *      --  FRFP_SCREENCOORDS: *pptl specifies the point to
    817835 *              check in _screen_ coordinates, instead of
     
    13101328/*
    13111329 *@@category: Helpers\PM helpers\Container helpers\Record relations/iteration
     1330 *      functions for querying the relation of records and
     1331 *      iterating through records.
    13121332 */
    13131333
     
    13961416            // first call: get parent of precTest;
    13971417            // subsequent calls: climb up
    1398             precParentThis = WinSendMsg(hwndCnr,
    1399                                         CM_QUERYRECORD,
    1400                                         precParentThis,
    1401                                         MPFROM2SHORT(CMA_PARENT,
    1402                                                      CMA_ITEMORDER));
     1418            precParentThis = (PRECORDCORE)WinSendMsg(hwndCnr,
     1419                                                     CM_QUERYRECORD,
     1420                                                     precParentThis,
     1421                                                     MPFROM2SHORT(CMA_PARENT,
     1422                                                                  CMA_ITEMORDER));
    14031423            if (precParentThis == (PRECORDCORE)-1)
    14041424                break;
Note: See TracChangeset for help on using the changeset viewer.