home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDMOVFLD.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  531b  |  31 lines

  1. /*
  2.     sdmovfld.c     4/10/88
  3.  
  4.     % sed_MoveField
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/24/89 jmd    added sed_ macros
  13.      3/28/90 jmd    ansi-fied
  14. */
  15.  
  16. #include "sed.h"
  17.  
  18. void sed_MoveField(sed_type sed, int fieldno, int row, int col)
  19. /*
  20.     Move a field to a new location.
  21. */
  22. {
  23.     menu_MoveField(sed_GetMenu(sed), fieldno, row, col);
  24.  
  25.     if (fieldno == sed_GetFieldNo(sed)) {
  26.         /* adjust the cursor position */
  27.         sd_adjust_cur(sed);
  28.     }
  29. }
  30.  
  31.