You can subscribe to this list here.
2003 |
Jan
|
Feb
(52) |
Mar
(47) |
Apr
(10) |
May
(5) |
Jun
|
Jul
(20) |
Aug
|
Sep
(5) |
Oct
(12) |
Nov
(22) |
Dec
(61) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(35) |
Feb
(33) |
Mar
(14) |
Apr
(7) |
May
(72) |
Jun
(35) |
Jul
(83) |
Aug
(28) |
Sep
(50) |
Oct
(4) |
Nov
(40) |
Dec
(39) |
2005 |
Jan
(38) |
Feb
(65) |
Mar
(58) |
Apr
(27) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(25) |
Sep
(25) |
Oct
(74) |
Nov
(82) |
Dec
(82) |
2006 |
Jan
(68) |
Feb
(81) |
Mar
(52) |
Apr
(6) |
May
|
Jun
(14) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2007 |
Jan
(3) |
Feb
(15) |
Mar
(3) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
(3) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(41) |
From: David G. <dg...@us...> - 2008-06-27 18:32:18
|
Update of /cvsroot/windom/windom/userdef/extended In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2870/extended Modified Files: draw.c global.h xedit.c Log Message: Solved some cursor and characters redraw issues in xeditfields, also navigation through the string using HOME key and mouse. Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/extended/draw.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- draw.c 6 Feb 2007 21:09:57 -0000 1.13 +++ draw.c 27 Jun 2008 18:32:11 -0000 1.14 @@ -1866,13 +1866,13 @@ if( xedit->tedinfo->te_pvalid[0] == 'H') { if( uldata->has_fsmgdos) vqt_f_extent( vdih, "*", tab); else vqt_extent ( vdih, "*", tab); - width += (tab[2]-tab[0])*(curs-xedit->pos); + width += (tab[2]-tab[0]+EDIT_LEFT_MARGIN)*(curs-xedit->pos); } else { c = xedit->line[curs]; xedit->line[curs] = '\0'; if( uldata->has_fsmgdos) vqt_f_extent( vdih, xedit->line+xedit->pos, tab); else vqt_extent ( vdih, xedit->line+xedit->pos, tab); - width += tab[2]-tab[0]; + width += tab[2]-tab[0]+EDIT_LEFT_MARGIN; xedit->line[curs] = c; } @@ -2018,9 +2018,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x+2, y, p); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); else - v_gtext( vdih, pblk->pb_x+2, y, p); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); vqt_extent( vdih, p, tab); pblk->pb_x += tab[2]-tab[0]; @@ -2074,9 +2074,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x, y, txt); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); else - v_gtext( vdih, pblk->pb_x, y, txt); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); /* * cursor Index: xedit.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/extended/xedit.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- xedit.c 6 Feb 2007 21:09:57 -0000 1.7 +++ xedit.c 27 Jun 2008 18:32:11 -0000 1.8 @@ -308,7 +308,7 @@ /* position of the scroll */ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; redraw = ( val != xedit->pos)?RDRW_ALL:RDRW_CUR; *idx = xedit -> curs; @@ -323,7 +323,7 @@ switch( val) { case 0x4700: /* HOME : cursor go to the begining of the text */ - if( p[xedit->curs] != '\0') { + if( p[xedit->curs-1] != '\0') { xedit->curs = xedit->pos = 0; redraw = RDRW_ALL; } @@ -331,9 +331,11 @@ case 0x4737: /* S-HOME : cursor go to end of the text */ if( p[xedit->curs] != '\0') { redraw = RDRW_ALL; - xedit->pos = xedit->curs = (int) strlen(p); - xedit->pos = MAX( 0, xedit->pos-2); - } + xedit->curs = (int) strlen(p); + /* xedit->pos = xedit->curs = (int) strlen(p); */ + /* xedit->pos = MAX( 0, xedit->pos-2); */ + } + break; case 0x4B00: /* LFARW : go 1 char to the left */ if( xedit->curs > 0) { redraw = RDRW_CUR; @@ -450,7 +452,7 @@ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; } if( redraw != RDRW_OFF && val != xedit->pos) @@ -466,17 +468,17 @@ case RDRW_ALL: val = _xobjc_width_curs( uldata, xedit, xedit->pos); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_CUR: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 1; + grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 5; break; case RDRW_RT: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_OFF: /* should never happen */ @@ -501,20 +503,32 @@ XOBJC_DATA *uldata; W_XEDIT *xedit; int curs; + short xpos, dumm; xedit = (W_XEDIT*)tree[idx].ob_spec.userblk->ub_parm; uldata = xedit->wp_uldata; + + mt_objc_offset( tree, idx, &xpos, &dumm, env->aes_global); curs = (int)strlen(xedit->line); - if( _xobjc_width_curs( uldata, xedit, curs) < x) - return curs; - curs = xedit->pos; - while( xedit->line[curs] && _xobjc_width_curs( uldata, xedit, curs++) < x) + + if( _xobjc_width_curs( uldata, xedit, curs) < x - xpos ) + { + return curs; + } + curs = xedit->pos; + + + if ( xedit->line[curs] ) + { + while( xedit->line[curs-1] && _xobjc_width_curs( uldata, xedit, curs++) <= x - xpos ) ; + return (curs -2); + } - return curs - 1 ; + return curs ; } Index: global.h =================================================================== RCS file: /cvsroot/windom/windom/userdef/extended/global.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- global.h 6 Feb 2007 21:09:57 -0000 1.8 +++ global.h 27 Jun 2008 18:32:11 -0000 1.9 @@ -81,6 +81,8 @@ #define SYSFONT 0 +#define EDIT_LEFT_MARGIN 2 + typedef struct { OBJECT *rs_trindex; short __CDECL (*draw_cicon)(long, OBJECT*, long, long, long, long); |
From: David G. <dg...@us...> - 2008-06-27 18:32:18
|
Update of /cvsroot/windom/windom/userdef/xgem In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2870/xgem Modified Files: draw.c global.h xedit.c Log Message: Solved some cursor and characters redraw issues in xeditfields, also navigation through the string using HOME key and mouse. Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/xgem/draw.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- draw.c 6 Nov 2005 18:32:20 -0000 1.6 +++ draw.c 27 Jun 2008 18:32:12 -0000 1.7 @@ -2242,13 +2242,13 @@ if( xedit->tedinfo->te_pvalid[0] == 'H') { if( uldata->has_fsmgdos) vqt_f_extent( vdih, "*", tab); else vqt_extent ( vdih, "*", tab); - width += (tab[2]-tab[0])*(curs-xedit->pos); + width += (tab[2]-tab[0]+EDIT_LEFT_MARGIN)*(curs-xedit->pos); } else { c = xedit->line[curs]; xedit->line[curs] = '\0'; if( uldata->has_fsmgdos) vqt_f_extent( vdih, xedit->line+xedit->pos, tab); else vqt_extent ( vdih, xedit->line+xedit->pos, tab); - width += tab[2]-tab[0]; + width += tab[2]-tab[0]+EDIT_LEFT_MARGIN; xedit->line[curs] = c; } @@ -2394,9 +2394,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x+2, y, p); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); else - v_gtext( vdih, pblk->pb_x+2, y, p); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); vqt_extent( vdih, p, tab); pblk->pb_x += tab[2]-tab[0]; @@ -2450,9 +2450,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x, y, txt); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); else - v_gtext( vdih, pblk->pb_x, y, txt); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); /* * cursor Index: xedit.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/xgem/xedit.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- xedit.c 3 Nov 2005 22:08:58 -0000 1.2 +++ xedit.c 27 Jun 2008 18:32:12 -0000 1.3 @@ -308,7 +308,7 @@ /* position of the scroll */ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; redraw = ( val != xedit->pos)?RDRW_ALL:RDRW_CUR; *idx = xedit -> curs; @@ -323,7 +323,7 @@ switch( val) { case 0x4700: /* HOME : cursor go to the begining of the text */ - if( p[xedit->curs] != '\0') { + if( p[xedit->curs-1] != '\0') { xedit->curs = xedit->pos = 0; redraw = RDRW_ALL; } @@ -331,9 +331,11 @@ case 0x4737: /* S-HOME : cursor go to end of the text */ if( p[xedit->curs] != '\0') { redraw = RDRW_ALL; - xedit->pos = xedit->curs = (int) strlen(p); - xedit->pos = MAX( 0, xedit->pos-2); - } + xedit->curs = (int) strlen(p); + /* xedit->pos = xedit->curs = (int) strlen(p); */ + /* xedit->pos = MAX( 0, xedit->pos-2); */ + } + break; case 0x4B00: /* LFARW : go 1 char to the left */ if( xedit->curs > 0) { redraw = RDRW_CUR; @@ -450,7 +452,7 @@ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; } if( redraw != RDRW_OFF && val != xedit->pos) @@ -466,17 +468,17 @@ case RDRW_ALL: val = _xobjc_width_curs( uldata, xedit, xedit->pos); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_CUR: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 1; + grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 5; break; case RDRW_RT: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_OFF: /* should never happen */ @@ -501,20 +503,32 @@ XOBJC_DATA *uldata; W_XEDIT *xedit; int curs; + short xpos, dumm; xedit = (W_XEDIT*)tree[idx].ob_spec.userblk->ub_parm; uldata = xedit->wp_uldata; + + mt_objc_offset( tree, idx, &xpos, &dumm, env->aes_global); curs = (int)strlen(xedit->line); - if( _xobjc_width_curs( uldata, xedit, curs) < x) - return curs; - curs = xedit->pos; - while( xedit->line[curs] && _xobjc_width_curs( uldata, xedit, curs++) < x) + + if( _xobjc_width_curs( uldata, xedit, curs) < x - xpos ) + { + return curs; + } + curs = xedit->pos; + + + if ( xedit->line[curs] ) + { + while( xedit->line[curs-1] && _xobjc_width_curs( uldata, xedit, curs++) <= x - xpos ) ; + return (curs -2); + } - return curs - 1 ; + return curs ; } Index: global.h =================================================================== RCS file: /cvsroot/windom/windom/userdef/xgem/global.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- global.h 3 Nov 2005 22:08:58 -0000 1.2 +++ global.h 27 Jun 2008 18:32:12 -0000 1.3 @@ -81,6 +81,8 @@ #define SYSFONT 0 +#define EDIT_LEFT_MARGIN 2 + enum t_ind_mfdb { mfdb_bg=0, mfdb_button, mfdb_thumb, mfdb_thumb_back, mfdb_last}; typedef struct { |
From: David G. <dg...@us...> - 2008-06-27 18:32:18
|
Update of /cvsroot/windom/windom/userdef/textured In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2870/textured Modified Files: draw.c global.h xedit.c Log Message: Solved some cursor and characters redraw issues in xeditfields, also navigation through the string using HOME key and mouse. Index: draw.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/textured/draw.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- draw.c 6 Nov 2005 18:31:52 -0000 1.7 +++ draw.c 27 Jun 2008 18:32:12 -0000 1.8 @@ -1966,13 +1966,13 @@ if( xedit->tedinfo->te_pvalid[0] == 'H') { if( uldata->has_fsmgdos) vqt_f_extent( vdih, "*", tab); else vqt_extent ( vdih, "*", tab); - width += (tab[2]-tab[0])*(curs-xedit->pos); + width += (tab[2]-tab[0]+EDIT_LEFT_MARGIN)*(curs-xedit->pos); } else { c = xedit->line[curs]; xedit->line[curs] = '\0'; if( uldata->has_fsmgdos) vqt_f_extent( vdih, xedit->line+xedit->pos, tab); else vqt_extent ( vdih, xedit->line+xedit->pos, tab); - width += tab[2]-tab[0]; + width += tab[2]-tab[0]+EDIT_LEFT_MARGIN; xedit->line[curs] = c; } @@ -2118,9 +2118,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x+2, y, p); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); else - v_gtext( vdih, pblk->pb_x+2, y, p); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, p); vqt_extent( vdih, p, tab); pblk->pb_x += tab[2]-tab[0]; @@ -2174,9 +2174,9 @@ y = pblk->pb_y + (pblk->pb_h+tab[7])/2; if( uldata->has_fsmgdos) - v_ftext( vdih, pblk->pb_x, y, txt); + v_ftext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); else - v_gtext( vdih, pblk->pb_x, y, txt); + v_gtext( vdih, pblk->pb_x + EDIT_LEFT_MARGIN, y, txt); /* * cursor Index: xedit.c =================================================================== RCS file: /cvsroot/windom/windom/userdef/textured/xedit.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- xedit.c 3 Nov 2005 22:18:05 -0000 1.4 +++ xedit.c 27 Jun 2008 18:32:12 -0000 1.5 @@ -306,7 +306,7 @@ /* position of the scroll */ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; redraw = ( val != xedit->pos)?RDRW_ALL:RDRW_CUR; *idx = xedit -> curs; @@ -321,7 +321,7 @@ switch( val) { case 0x4700: /* HOME : cursor go to the begining of the text */ - if( p[xedit->curs] != '\0') { + if( p[xedit->curs-1] != '\0') { xedit->curs = xedit->pos = 0; redraw = RDRW_ALL; } @@ -329,9 +329,11 @@ case 0x4737: /* S-HOME : cursor go to end of the text */ if( p[xedit->curs] != '\0') { redraw = RDRW_ALL; - xedit->pos = xedit->curs = (int) strlen(p); - xedit->pos = MAX( 0, xedit->pos-2); - } + xedit->curs = (int) strlen(p); + /* xedit->pos = xedit->curs = (int) strlen(p); */ + /* xedit->pos = MAX( 0, xedit->pos-2); */ + } + break; case 0x4B00: /* LFARW : go 1 char to the left */ if( xedit->curs > 0) { redraw = RDRW_CUR; @@ -448,7 +450,7 @@ if( xedit->curs < xedit->pos) xedit->pos = xedit->curs; - while( _xobjc_width_curs( uldata, xedit, xedit->curs) + 2 > tree[obj].ob_width) + while( _xobjc_width_curs( uldata, xedit, xedit->curs) > tree[obj].ob_width) xedit->pos ++; } if( redraw != RDRW_OFF && val != xedit->pos) @@ -464,17 +466,17 @@ case RDRW_ALL: val = _xobjc_width_curs( uldata, xedit, xedit->pos); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_CUR: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 1; + grect.g_w = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs+1)) - val + 5; break; case RDRW_RT: val = _xobjc_width_curs( uldata, xedit, MAX(xedit->pos,xedit->curs-1)); grect.g_x += val - 1; - grect.g_w -= val; + grect.g_w -= val - 1; break; case RDRW_OFF: /* should never happen */ @@ -499,20 +501,32 @@ XOBJC_DATA *uldata; W_XEDIT *xedit; int curs; + short xpos, dumm; xedit = (W_XEDIT*)tree[idx].ob_spec.userblk->ub_parm; uldata = xedit->wp_uldata; + + mt_objc_offset( tree, idx, &xpos, &dumm, env->aes_global); curs = (int)strlen(xedit->line); - if( _xobjc_width_curs( uldata, xedit, curs) < x) - return curs; - curs = xedit->pos; - while( xedit->line[curs] && _xobjc_width_curs( uldata, xedit, curs++) < x) + + if( _xobjc_width_curs( uldata, xedit, curs) < x - xpos ) + { + return curs; + } + curs = xedit->pos; + + + if ( xedit->line[curs] ) + { + while( xedit->line[curs-1] && _xobjc_width_curs( uldata, xedit, curs++) <= x - xpos ) ; + return (curs -2); + } - return curs - 1 ; + return curs ; } Index: global.h =================================================================== RCS file: /cvsroot/windom/windom/userdef/textured/global.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- global.h 3 Nov 2005 22:18:05 -0000 1.6 +++ global.h 27 Jun 2008 18:32:12 -0000 1.7 @@ -78,6 +78,8 @@ #define SYSFONT 0 +#define EDIT_LEFT_MARGIN 2 + enum t_ind_mfdb { mfdb_bg=0, mfdb_button, mfdb_thumb, mfdb_thumb_back, mfdb_last}; typedef struct { |
From: Arnaud B. <ber...@us...> - 2008-06-16 20:30:18
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22086 Modified Files: objc_edit.c Log Message: objc_wform_edit(ED_INIT) is now robust when invoked with the parameter *idx greater than expected (greater than then len of the text field). Index: objc_edit.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_edit.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- objc_edit.c 6 Feb 2007 21:09:49 -0000 1.9 +++ objc_edit.c 16 Jun 2008 20:29:42 -0000 1.10 @@ -135,6 +135,9 @@ if( wform) { INT16 curs = *idx; + if (curs > strlen( mt_ObjcString(app,tree,obj,NULL) )) + curs = strlen( mt_ObjcString(app,tree,obj,NULL) ); + retval = mt_objc_edit( tree, obj, val, idx, kind,app->aes_global); /* recompute the cursor position */ |
From: Dominique B. <ber...@us...> - 2007-11-05 10:13:22
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15153 Modified Files: galloc.c Log Message: fix: the first version of GEMDOS which support Mxalloc() is 0.19 not above. Index: galloc.c =================================================================== RCS file: /cvsroot/windom/windom/src/galloc.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- galloc.c 6 Feb 2007 21:09:46 -0000 1.7 +++ galloc.c 5 Nov 2007 10:13:18 -0000 1.8 @@ -74,7 +74,7 @@ if (type_mxalloc < 0) { unsigned short v = Sversion(); - if ( (v & 0xff) || (v > 0x1900) ) { /* GEMDOS > 0.19 */ + if ( (v & 0xff) || (v >= 0x1900) ) { /* GEMDOS >= 0.19 */ if ( get_cookie (MAGX_COOKIE, &val) || get_cookie (MiNT_COOKIE, &val)) type_mxalloc = 2; /* Mxalloc with MGLOBAL */ else |
From: Arnaud B. <ber...@us...> - 2007-04-10 20:47:37
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17936 Modified Files: appl_init.c comp_window.c frame_attach.c wind_delete.c Log Message: The value returned by WindDelete() is now 100% compliant with the value returned by wind_delete(). Documentation fixed. Index: comp_window.c =================================================================== RCS file: /cvsroot/windom/windom/src/comp_window.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- comp_window.c 6 Feb 2007 21:09:45 -0000 1.21 +++ comp_window.c 10 Apr 2007 20:47:32 -0000 1.22 @@ -299,7 +299,7 @@ static int __CDECL comp_wind_remove( APPvar *app, WINDOW *win ) { /* FIXME: TODO: nothing to do? */ - return E_OK; + return 1; } static Index: wind_delete.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_delete.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- wind_delete.c 6 Feb 2007 21:09:52 -0000 1.13 +++ wind_delete.c 10 Apr 2007 20:47:32 -0000 1.14 @@ -45,7 +45,7 @@ * * @param app application descriptor, * @param win window descriptor, - * @return 0 or a negative code error. + * @return 0 if an error occurred or non-zero otherwise. * * mt_WindDelete() replaces mt_wind_delete(). The window descriptor is * removed from the list of windows then deleted. Index: appl_init.c =================================================================== RCS file: /cvsroot/windom/windom/src/appl_init.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- appl_init.c 6 Feb 2007 21:09:44 -0000 1.30 +++ appl_init.c 10 Apr 2007 20:47:32 -0000 1.31 @@ -141,7 +141,7 @@ static int __CDECL app_desk_remove( APPvar *app, WINDOW *win ) { - return E_OK; + return 1; } static @@ -251,7 +251,7 @@ app->aes4 |= AES4_ICONIFY; app->aes4 |= AES4_TOOLBAR; } - if( parm3 & 0x0001 ) /* support des coordonnes */ + if( parm3 & 0x0001 ) /* support des coordonnes */ app->aes4 |= AES4_ICONIFYXYWH; } Index: frame_attach.c =================================================================== RCS file: /cvsroot/windom/windom/src/frame_attach.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- frame_attach.c 6 Feb 2007 21:09:46 -0000 1.14 +++ frame_attach.c 10 Apr 2007 20:47:32 -0000 1.15 @@ -111,7 +111,7 @@ static int __CDECL frame_wind_remove( APPvar *app, WINDOW *win ) { remove_frame_from_list( app, mt_WindHandle( app, win->handle), win); - return E_OK; + return 1; } |
From: Arnaud B. <ber...@us...> - 2007-04-10 20:12:47
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv5146 Modified Files: wind_close.c Log Message: The value returned by WindClose() is now 100% compatible with value returned by the AES function wind_close() : 0 = error; other = ok. Documentation fixed. Index: wind_close.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_close.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- wind_close.c 6 Feb 2007 21:09:52 -0000 1.7 +++ wind_close.c 10 Apr 2007 20:12:41 -0000 1.8 @@ -34,7 +34,7 @@ * * @param app application descriptor, * @param win window descriptor, - * @return 0 or a negative code error. + * @return 0 if an error occurred or non-zero otherwise. * * mt_WindClose() closes a window on the screen and replaces the * AES wind_close function. As mt_WindOpen() a graphic effect is @@ -54,12 +54,12 @@ /* if( !(win->status & WS_OPEN)) - return -1; */ /* warning : window already closed */ + return 0; */ /* warning : window already closed */ /* not a real AES window : we just have to remove the WS_OPEN flag */ if( win -> status & WS_CUSTOM) { win -> status &= ~WS_OPEN; - return 0; + return 1; } /* close the AES window */ |
From: Arnaud B. <ber...@us...> - 2007-04-09 20:41:13
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19495 Modified Files: wind_open.c Log Message: fixed documentation of return value (contrib JFL) Index: wind_open.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_open.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- wind_open.c 6 Feb 2007 21:09:53 -0000 1.7 +++ wind_open.c 9 Apr 2007 20:41:08 -0000 1.8 @@ -37,7 +37,7 @@ * @param x,y,w,h position and size of the window on screen. * - If x=-1, the window will be horizontally centered using GrectCenter(). * - If x=-1, the window will be vertically centered using GrectCenter(). - * @return 0 or a negative code error. + * @return 0 if an error occurred or non-zero otherwise. * * mt_WindOpen() opens a window at screen previously created by mt_WindCreate(). * In WinDom environnement, the open_wind() should never be |
From: Arnaud B. <ber...@us...> - 2007-04-02 19:57:08
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6493 Modified Files: objc_string.c Log Message: fixed bug #1688114 ObjcString() returns bad address for XCICON object by applying the patch provided by Roger Burrows. Index: objc_string.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_string.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- objc_string.c 6 Feb 2007 21:09:49 -0000 1.7 +++ objc_string.c 2 Apr 2007 19:57:03 -0000 1.8 @@ -35,7 +35,7 @@ * @param app application descriptor, * @param tree address of an objects tree, * @param idx object index, - * @param put new label or NULL, + * @param put new label or NULL, * @return address of the object label. * * mt_ObjcString() provides an universal acces of the label (text) of any object. @@ -49,7 +49,7 @@ @endcode * It is possible to define a new buffer for the object: @code char txt[120] = "New text"; - ObjcString( tree, i, txt); + ObjcString( tree, i, txt); @endcode * * mt_ObjcString() should never be used to change the text of an menu item. For @@ -87,10 +87,12 @@ if ( udlib_string(app,tree,idx,put,&retval) == 0 ) { /* No, maybe it's a CICON... */ if ( ((tree[idx].ob_type & 0xFF00)>>8) == XCICON) { + W_PARM *w; user = tree[idx].ob_spec.userblk; + w = (W_PARM *)user->ub_parm; if( put) - ((ICONBLK *)user->ub_parm)->ib_ptext = put; - return ((ICONBLK *)user->ub_parm)->ib_ptext; + ((ICONBLK *)w->wp_spec)->ib_ptext = put; + return ((ICONBLK *)w->wp_spec)->ib_ptext; } } else { /* Yes, and retval contains the value to return */ |
From: Dominique B. <ber...@us...> - 2007-03-13 00:20:01
|
Update of /cvsroot/windom/extensions/dfrm In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17181 Modified Files: Doxyfile Log Message: Minor changes for doxygen 1.4.4 Index: Doxyfile =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/Doxyfile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Doxyfile 4 Mar 2006 21:05:26 -0000 1.5 +++ Doxyfile 13 Mar 2007 00:19:54 -0000 1.6 @@ -191,7 +191,7 @@ # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES -EXTRACT_ALL = NO +EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. @@ -372,7 +372,7 @@ # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = include src +INPUT = include/windom src # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -856,7 +856,7 @@ # evaluate all C-preprocessor directives found in the sources and include # files. -ENABLE_PREPROCESSING = YES +ENABLE_PREPROCESSING = NO # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional |
From: Dominique B. <ber...@us...> - 2007-03-13 00:20:01
|
Update of /cvsroot/windom/extensions/dfrm/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17181/src Modified Files: doxydoc.c Log Message: Minor changes for doxygen 1.4.4 Index: doxydoc.c =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/src/doxydoc.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- doxydoc.c 26 Feb 2006 20:55:31 -0000 1.8 +++ doxydoc.c 13 Mar 2007 00:19:54 -0000 1.9 @@ -253,7 +253,7 @@ Your project will have the following structure. The source file looks like : -\verbatim +\code /* ---- myprog.c ---- */ #include <windom.h> #include <dfrm.h> @@ -271,9 +271,11 @@ } /* Displaying an alert for information */ FormAlert( 1, strs[ALRT1]); - ... + /* ... */ + ApplExit(); + return 0; } -\endverbatim +\endcode The file containing external strings is : |
From: Dominique B. <ber...@us...> - 2007-03-12 22:03:00
|
Update of /cvsroot/windom/extensions/dfrm/docs/tutorial/tut1 In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26528 Modified Files: tut_1.html Log Message: Spelling ... Index: tut_1.html =================================================================== RCS file: /cvsroot/windom/extensions/dfrm/docs/tutorial/tut1/tut_1.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut_1.html 26 Feb 2006 20:25:38 -0000 1.4 +++ tut_1.html 12 Mar 2007 22:02:47 -0000 1.5 @@ -11,7 +11,7 @@ <H1 align=center>Example 1 : simple alert box.</H1> <H2 align=center>by Dominique Béréziat</H2> -<P>The purpose of this example is to create a alert box : a box containing a text +<P>The purpose of this example is to create an alert box : a box containing a text object and two buttons "Ok" and "Cancel".</P> <TABLE WIDTH="100%" BORDER="1" HEIGHT="233"> <TR> @@ -55,17 +55,17 @@ <TD VALIGN="TOP" WIDTH="48%"> <h3>First Step</h3> <p> - First of all, you have to initialise WinDom. - Next we declare a local variable to build our dialog box : a dialog pointer. + First of all, you have to initialize WinDom. + Next, we declare a local variable to build our dialog box: a dialog pointer. </p> <P>The second thing to do is to create a master dialog structure. The function dfrm_create() creates : </P> <UL> - <LI> A dynamic structure which will contain objects.</LI> - <LI>Using TYPE_NORMAL mode, we create a root object in the which is box - with relief borders. Second parameter stand for the maximal - number of object in the form.</LI> + <LI>A dynamic structure which will contain objects.</LI> + <LI>Using TYPE_NORMAL mode, we create a root object which is box + with relief borders. The second parameter stands for the maximal + number of objects in the form.</LI> </UL> <P> The third thing is to place the dialog form into a window @@ -74,9 +74,9 @@ </p> <p> - Rest of the code address some WinDom aspect to handle GEM - event : the callback function ApTerm() catches AP_TERM message - (application terminaison), and we handle GEM event in + The continuation of the code addresses some WinDom aspects to handle GEM + events : the callback function ApTerm() catches the AP_TERM message + (application terminaison), and we handle GEM events in an infinite loop. </p> <P> @@ -141,7 +141,7 @@ </p> <p> Directive of size on the root object (<tt>dfrm_setw()</tt> and <tt>dfrm_seth()</tt>) - are now useness because when we add children objects to a object, its + are now useless because when we add children objects to a object, its size is recomputed in order to contain its children objects. </P> <p> @@ -149,9 +149,9 @@ objects. Here we create two label objects with <tt>dfrm_new_label()</tt>. </p> <p> - After object creation, we can add it in the dialog structure using - <tt>dfrm_add()</tt>. So They are - added as children of ROOT object, they are vertically aligned, each + After object creation, we can add them in the dialog structure using + <tt>dfrm_add()</tt>. So they are + added as children of the ROOT object, they are vertically aligned, each object are spaced using a demi-height character (-1). Objects are placed from 2 width character (-4) from the left border because objects are left-aligned by default. @@ -230,10 +230,10 @@ We need a second local variable containing a parent object index. To align horizontal buttons we have to : <ol> - <li> create an invisible box. - <li> create and align buttons. - <li> add button as children of invisible box. - <li> add invisible as children of ROOT object with an vertical alignment. + <li> create an invisible box, + <li> create and align buttons, + <li> add buttons as children of invisible box, + <li> add the invisible box as children of the ROOT object with an vertical alignment. </ol> <center> <img src="tut_1-3.gif"> @@ -329,10 +329,10 @@ <TD WIDTH="48%" VALIGN=TOP> <h3>Last Step</h3> <p> - In this last step, we can adding some alignement/justification - directive. For example, we want to center texts and buttons inside - the form : we specified a centered directive for each - concerned object using <tt>dfrm_align()</tt> function. + In this last step, we can add some alignement/justification + directives. For example, we want to center texts and buttons inside + the form : we specify a centered directive for each + concerned object by calling the <tt>dfrm_align()</tt> function. </p> <p> Directives of alignment are effective only after the function @@ -342,13 +342,13 @@ <img src="tut_1-4.gif"> </p> <p> - We finish by adding callback funtions to selectable objects. - We attach the functions : + We finish by adding callback functions to selectable objects. + We bind the functions : <ol> - <li><tt>wclose</tt> to the button "Exit". The function simply close the + <li><tt>wclose</tt> to the button "Exit". This function closes the window. - <li><tt>winfo</tt> to the button "Info". This function open an alert - box displaying WinDom and DFRM number version. + <li><tt>winfo</tt> to the button "Info". This function opens an alert + box displaying WinDom and DFRM number versions. </ol> </p> |
From: Arnaud B. <ber...@us...> - 2007-02-08 21:54:38
|
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31853 Modified Files: rsrc_gaddr.c Log Message: fixed bug #1655467 (RsrcGaddr() has inconsistent return code) Index: rsrc_gaddr.c =================================================================== RCS file: /cvsroot/windom/windom/src/rsrc_gaddr.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- rsrc_gaddr.c 6 Feb 2007 21:09:49 -0000 1.6 +++ rsrc_gaddr.c 8 Feb 2007 21:54:34 -0000 1.7 @@ -32,7 +32,7 @@ /** * @brief retrieve an address object from a loaded resource file. - * + * * @param app application descriptor, * @param _rsc resource descriptor or NULL * @param type type of object to retrieval. Possible values are: @@ -52,7 +52,10 @@ * - \b R_BIPDATA bi_pdata field within ICONBLKs * @param index object index to retrieval, * @param addr address of object, - * @return 0 or negative code error. + * @return the value returned by mt_RsrcGaddr() is similar to what mt_rsrc_gaddr() returns : + * - 0 in case of error + * - any other value (actually -1 when \a _rsc is not NULL) in case of success. + * Then, \a addr is valid. * * mt_RsrcGaddr() has the same action than mt_rsrc_gaddr() on resource loaded * by mt_RsrcXload(). Parameter \e _rsc is a value returned by mt_RsrcXload(). @@ -83,7 +86,7 @@ break; case R_STRING: case R_FRSTR: - *(long*)addr = (long) (rsc->head.frstr[index]); + *(long*)addr = (long) (rsc->head.frstr[index]); break; case R_IMAGEDATA: case R_FRIMG: @@ -114,9 +117,9 @@ *(long*)addr = (long) (rsc->head.bitblk[index].bi_pdata); break; default: - return -1; + return 0; } - return 0; + return -1; } else return mt_rsrc_gaddr( type, index, addr, app->aes_global); } |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:17:03
|
Update of /cvsroot/windom/windom In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv11492 Added Files: HOWTO_YEAR++ Log Message: initial commit --- NEW FILE: HOWTO_YEAR++ --- # A short script to be ran each new year. # This script updates "Copyright (c) years" sentences. for a in `find . -name '*' -print`; do test -f $a && sed --in-place -e "s/1997-2006/1997-2007/g" $a; done |
Update of /cvsroot/windom/windom/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/src Modified Files: add_slash.c appl_control.c appl_exit.c appl_get.c appl_init.c appl_name.c appl_set.c appl_write.c av_exit.c av_init.c av_server.c av_status.c av_strfmt.c av_waitfor.c bubble_attach.c bubble_call.c bubble_do.c bubble_evnt.c bubble_find.c bubble_free.c bubble_get.c bubble_modal.c cicon.c cicon.h clip_off.c clip_on.c close_fontid.c comp_aslider.c comp_create.c comp_menu.c comp_object.c comp_slider.c comp_split.c comp_szd.c comp_widget.c comp_window.c conf_getline.c conf_inquire.c conf_read.c conf_windom.c conf_write.c conv_path.c cookie.h cookieptr.c data.c debug_windom.c do_update.c draw_submenu.c evnt_list.c evnt_redraw.c evnt_windom.c files.mak font_id2name.c font_name2id.c font_sel.c fontsel.h form_alert.c form_attach.c form_begin.c form_close.c form_create.c form_end.c form_resize.c form_restore.c form_save.c form_thbget.c form_thbset.c form_thumb.c form_wbegin.c form_wdo.c form_wend.c frame_attach.c frame_calc.c frame_create.c frame_find.c frame_get.c frame_init.c frame_remove.c frame_search.c frame_set.c frame_set_widget.c frm_buttn_ev.c frm_click.c frm_drw.c frm_dstry.c frm_fld.c frm_keybd_ev.c frm_keyhd.c frm_mvd.c frm_top.c fsel.c fsel.h galloc.c gcc.mak gcc281.mak gemcode2ascii.c get_appname.c get_cookie.c get_next_obj.c getindexmenu.c give_iconifyxywh.c globals.c globals.h glue.c grectcenter.c import_xobjc.mak is_menu.c is_modal.c keybd2ascii.c list.c load_fontid.c menu_attach.c menu_bar.c menu_bind.c menu_disable.c menu_enable.c menu_execcmd.c menu_icheck.c menu_scroll.c menu_text.c menu_tnormal.c mnscroll.c mnscroll.h mouse.h mouse.rh mouse.rsh mouse_objc.c mouse_sprite.c mouse_work.c move_work.c ob_istype.c obj_fd_flag.c obj_fd_xtype.c obj_nb.c obj_root.c objc_attach.c objc_change.c objc_char.c objc_drawparent.c objc_dup.c objc_edit.c objc_free.c objc_ishidden.c objc_str3d.c objc_strfmt.c objc_string.c objc_tree.c objc_wchange.c objc_wdraw.c objc_wdrawparent.c obspec_mem.c options.h pc.mak popup.c rc_set.c remove_frame.c rsrc_gaddr.c rsrc_ghdr.c rsrc_load.c rsrc_userdraw.c rsrc_userfree.c rsrc_xfree.c rsrc_xload.c scrap_txtread.c scrap_txtwrite.c set_gadget_pos.c shel_help.c shel_write.c slid_attach.c slid_create.c slid_delete.c slid_getvalue.c slid_setfunc.c slid_setsize.c slid_setupdat.c slid_setvalue.c sliders.h snd_arrw.c snd_msg.c snd_mubutton.c snd_rdw.c sox.mak std_dstry.c std_evnt.c std_fntchg.c std_mwk.c strdup.c toserror.h udlib_add_obj.c udlib_char.c udlib_edit.c udlib_exit.c udlib_extended.c udlib_extfree.c udlib_garbage.c udlib_get_edpos.c udlib_get_type.c udlib_init.c udlib_list.c udlib_objfind.c udlib_rm_obj.c udlib_string.c udlib_unextended.c vq_extfs.c vq_magx.c vq_mint.c vqt_extname.c vqt_name.c vqt_xname.c vst_font.c vst_loadfonts.c vst_unloadfonts.c w_getbkgr.c w_getpal.c w_putbkgr.c w_setpal.c wind_attach.c wind_calc.c wind_clear.c wind_close.c wind_create.c wind_delete.c wind_find.c wind_get.c wind_handle.c wind_lst.c wind_lst2.c wind_new.c wind_open.c wind_set.c wind_slider.c wind_top.c wportab.h xrsrc.c Log Message: year++ Index: files.mak =================================================================== RCS file: /cvsroot/windom/windom/src/files.mak,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- files.mak 22 Feb 2006 18:33:33 -0000 1.23 +++ files.mak 6 Feb 2007 21:09:46 -0000 1.24 @@ -1,5 +1,5 @@ # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: frame_set_widget.c =================================================================== RCS file: /cvsroot/windom/windom/src/frame_set_widget.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- frame_set_widget.c 3 Jan 2006 13:52:34 -0000 1.5 +++ frame_set_widget.c 6 Feb 2007 21:09:46 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: std_dstry.c =================================================================== RCS file: /cvsroot/windom/windom/src/std_dstry.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- std_dstry.c 3 Jan 2006 13:52:35 -0000 1.6 +++ std_dstry.c 6 Feb 2007 21:09:50 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: slid_setvalue.c =================================================================== RCS file: /cvsroot/windom/windom/src/slid_setvalue.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- slid_setvalue.c 3 Jan 2006 13:52:34 -0000 1.5 +++ slid_setvalue.c 6 Feb 2007 21:09:50 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_top.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_top.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- frm_top.c 3 Jan 2006 13:52:34 -0000 1.6 +++ frm_top.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: menu_execcmd.c =================================================================== RCS file: /cvsroot/windom/windom/src/menu_execcmd.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- menu_execcmd.c 3 Jan 2006 13:52:34 -0000 1.6 +++ menu_execcmd.c 6 Feb 2007 21:09:49 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: comp_widget.c =================================================================== RCS file: /cvsroot/windom/windom/src/comp_widget.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- comp_widget.c 26 Feb 2006 03:15:22 -0000 1.14 +++ comp_widget.c 6 Feb 2007 21:09:45 -0000 1.15 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: data.c =================================================================== RCS file: /cvsroot/windom/windom/src/data.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- data.c 22 Feb 2006 16:15:25 -0000 1.6 +++ data.c 6 Feb 2007 21:09:45 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_resize.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_resize.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- form_resize.c 3 Jan 2006 13:52:34 -0000 1.4 +++ form_resize.c 6 Feb 2007 21:09:46 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: xrsrc.c =================================================================== RCS file: /cvsroot/windom/windom/src/xrsrc.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- xrsrc.c 3 Jan 2006 13:52:35 -0000 1.8 +++ xrsrc.c 6 Feb 2007 21:09:56 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wind_open.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_open.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- wind_open.c 3 Jan 2006 13:52:35 -0000 1.6 +++ wind_open.c 6 Feb 2007 21:09:53 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: av_strfmt.c =================================================================== RCS file: /cvsroot/windom/windom/src/av_strfmt.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- av_strfmt.c 3 Jan 2006 13:52:34 -0000 1.4 +++ av_strfmt.c 6 Feb 2007 21:09:44 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: conf_inquire.c =================================================================== RCS file: /cvsroot/windom/windom/src/conf_inquire.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- conf_inquire.c 3 Jan 2006 13:52:34 -0000 1.8 +++ conf_inquire.c 6 Feb 2007 21:09:45 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: menu_enable.c =================================================================== RCS file: /cvsroot/windom/windom/src/menu_enable.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- menu_enable.c 3 Jan 2006 13:52:34 -0000 1.5 +++ menu_enable.c 6 Feb 2007 21:09:49 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: strdup.c =================================================================== RCS file: /cvsroot/windom/windom/src/strdup.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- strdup.c 3 Jan 2006 13:52:35 -0000 1.4 +++ strdup.c 6 Feb 2007 21:09:51 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: comp_aslider.c =================================================================== RCS file: /cvsroot/windom/windom/src/comp_aslider.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- comp_aslider.c 7 Jan 2006 04:48:13 -0000 1.11 +++ comp_aslider.c 6 Feb 2007 21:09:45 -0000 1.12 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_dstry.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_dstry.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- frm_dstry.c 3 Jan 2006 13:52:34 -0000 1.6 +++ frm_dstry.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: is_modal.c =================================================================== RCS file: /cvsroot/windom/windom/src/is_modal.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- is_modal.c 3 Jan 2006 13:52:34 -0000 1.4 +++ is_modal.c 6 Feb 2007 21:09:48 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: fontsel.h =================================================================== RCS file: /cvsroot/windom/windom/src/fontsel.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- fontsel.h 3 Jan 2006 13:52:34 -0000 1.4 +++ fontsel.h 6 Feb 2007 21:09:46 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: shel_write.c =================================================================== RCS file: /cvsroot/windom/windom/src/shel_write.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- shel_write.c 3 Jan 2006 13:52:34 -0000 1.7 +++ shel_write.c 6 Feb 2007 21:09:50 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_click.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_click.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- frm_click.c 3 Jan 2006 13:52:34 -0000 1.9 +++ frm_click.c 6 Feb 2007 21:09:46 -0000 1.10 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wind_new.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_new.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- wind_new.c 3 Jan 2006 13:52:35 -0000 1.6 +++ wind_new.c 6 Feb 2007 21:09:53 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_keybd_ev.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_keybd_ev.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- frm_keybd_ev.c 3 Jan 2006 13:52:34 -0000 1.4 +++ frm_keybd_ev.c 6 Feb 2007 21:09:46 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: obj_fd_flag.c =================================================================== RCS file: /cvsroot/windom/windom/src/obj_fd_flag.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- obj_fd_flag.c 3 Jan 2006 13:52:34 -0000 1.4 +++ obj_fd_flag.c 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: objc_edit.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_edit.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- objc_edit.c 19 Jun 2006 18:48:01 -0000 1.8 +++ objc_edit.c 6 Feb 2007 21:09:49 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: appl_control.c =================================================================== RCS file: /cvsroot/windom/windom/src/appl_control.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- appl_control.c 4 Jan 2006 19:14:11 -0000 1.7 +++ appl_control.c 6 Feb 2007 21:09:44 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_garbage.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_garbage.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- udlib_garbage.c 3 Jan 2006 13:52:35 -0000 1.5 +++ udlib_garbage.c 6 Feb 2007 21:09:51 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: shel_help.c =================================================================== RCS file: /cvsroot/windom/windom/src/shel_help.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- shel_help.c 16 Oct 2006 17:58:30 -0000 1.3 +++ shel_help.c 6 Feb 2007 21:09:50 -0000 1.4 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_attach.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_attach.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- form_attach.c 3 Jan 2006 13:52:34 -0000 1.5 +++ form_attach.c 6 Feb 2007 21:09:46 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: menu_bar.c =================================================================== RCS file: /cvsroot/windom/windom/src/menu_bar.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- menu_bar.c 22 Feb 2006 16:15:25 -0000 1.5 +++ menu_bar.c 6 Feb 2007 21:09:48 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: get_appname.c =================================================================== RCS file: /cvsroot/windom/windom/src/get_appname.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- get_appname.c 3 Jan 2006 13:52:34 -0000 1.4 +++ get_appname.c 6 Feb 2007 21:09:47 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: snd_msg.c =================================================================== RCS file: /cvsroot/windom/windom/src/snd_msg.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- snd_msg.c 3 Jan 2006 13:52:35 -0000 1.5 +++ snd_msg.c 6 Feb 2007 21:09:50 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wind_slider.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_slider.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- wind_slider.c 3 Jan 2006 13:52:35 -0000 1.6 +++ wind_slider.c 6 Feb 2007 21:09:56 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: menu_tnormal.c =================================================================== RCS file: /cvsroot/windom/windom/src/menu_tnormal.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- menu_tnormal.c 25 Feb 2006 03:14:53 -0000 1.6 +++ menu_tnormal.c 6 Feb 2007 21:09:49 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: comp_split.c =================================================================== RCS file: /cvsroot/windom/windom/src/comp_split.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- comp_split.c 27 Mar 2006 18:13:41 -0000 1.5 +++ comp_split.c 6 Feb 2007 21:09:45 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: bubble_modal.c =================================================================== RCS file: /cvsroot/windom/windom/src/bubble_modal.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- bubble_modal.c 3 Jan 2006 13:52:34 -0000 1.9 +++ bubble_modal.c 6 Feb 2007 21:09:44 -0000 1.10 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wind_attach.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_attach.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- wind_attach.c 16 Feb 2006 03:26:09 -0000 1.7 +++ wind_attach.c 6 Feb 2007 21:09:52 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_char.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_char.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- udlib_char.c 3 Jan 2006 13:52:35 -0000 1.2 +++ udlib_char.c 6 Feb 2007 21:09:51 -0000 1.3 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: move_work.c =================================================================== RCS file: /cvsroot/windom/windom/src/move_work.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- move_work.c 16 Jan 2006 22:29:33 -0000 1.11 +++ move_work.c 6 Feb 2007 21:09:49 -0000 1.12 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_init.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_init.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- udlib_init.c 3 Jan 2006 13:52:35 -0000 1.14 +++ udlib_init.c 6 Feb 2007 21:09:51 -0000 1.15 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frame_create.c =================================================================== RCS file: /cvsroot/windom/windom/src/frame_create.c,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- frame_create.c 14 Mar 2006 19:40:35 -0000 1.17 +++ frame_create.c 6 Feb 2007 21:09:46 -0000 1.18 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: objc_change.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_change.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- objc_change.c 26 Feb 2006 02:56:08 -0000 1.5 +++ objc_change.c 6 Feb 2007 21:09:49 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_alert.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_alert.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- form_alert.c 3 Jan 2006 13:52:34 -0000 1.6 +++ form_alert.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: get_next_obj.c =================================================================== RCS file: /cvsroot/windom/windom/src/get_next_obj.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- get_next_obj.c 3 Jan 2006 13:52:34 -0000 1.4 +++ get_next_obj.c 6 Feb 2007 21:09:47 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: slid_setupdat.c =================================================================== RCS file: /cvsroot/windom/windom/src/slid_setupdat.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- slid_setupdat.c 3 Jan 2006 13:52:34 -0000 1.4 +++ slid_setupdat.c 6 Feb 2007 21:09:50 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_get_edpos.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_get_edpos.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- udlib_get_edpos.c 3 Jan 2006 13:52:35 -0000 1.5 +++ udlib_get_edpos.c 6 Feb 2007 21:09:51 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: conf_getline.c =================================================================== RCS file: /cvsroot/windom/windom/src/conf_getline.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- conf_getline.c 3 Jan 2006 13:52:34 -0000 1.7 +++ conf_getline.c 6 Feb 2007 21:09:45 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frame_calc.c =================================================================== RCS file: /cvsroot/windom/windom/src/frame_calc.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- frame_calc.c 3 Jan 2006 13:52:34 -0000 1.7 +++ frame_calc.c 6 Feb 2007 21:09:46 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: objc_tree.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_tree.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- objc_tree.c 3 Jan 2006 13:52:34 -0000 1.4 +++ objc_tree.c 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: av_status.c =================================================================== RCS file: /cvsroot/windom/windom/src/av_status.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- av_status.c 3 Jan 2006 13:52:34 -0000 1.5 +++ av_status.c 6 Feb 2007 21:09:44 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_get_type.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_get_type.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- udlib_get_type.c 3 Jan 2006 13:52:35 -0000 1.5 +++ udlib_get_type.c 6 Feb 2007 21:09:51 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: rsrc_gaddr.c =================================================================== RCS file: /cvsroot/windom/windom/src/rsrc_gaddr.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- rsrc_gaddr.c 3 Jan 2006 13:52:34 -0000 1.5 +++ rsrc_gaddr.c 6 Feb 2007 21:09:49 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: font_name2id.c =================================================================== RCS file: /cvsroot/windom/windom/src/font_name2id.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- font_name2id.c 18 Apr 2006 18:46:30 -0000 1.6 +++ font_name2id.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: mouse_sprite.c =================================================================== RCS file: /cvsroot/windom/windom/src/mouse_sprite.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- mouse_sprite.c 3 Jan 2006 13:52:34 -0000 1.5 +++ mouse_sprite.c 6 Feb 2007 21:09:49 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: grectcenter.c =================================================================== RCS file: /cvsroot/windom/windom/src/grectcenter.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- grectcenter.c 3 Jan 2006 13:52:34 -0000 1.4 +++ grectcenter.c 6 Feb 2007 21:09:47 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: slid_setfunc.c =================================================================== RCS file: /cvsroot/windom/windom/src/slid_setfunc.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- slid_setfunc.c 3 Jan 2006 13:52:34 -0000 1.5 +++ slid_setfunc.c 6 Feb 2007 21:09:50 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: conf_read.c =================================================================== RCS file: /cvsroot/windom/windom/src/conf_read.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- conf_read.c 3 Jan 2006 13:52:34 -0000 1.8 +++ conf_read.c 6 Feb 2007 21:09:45 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wind_get.c =================================================================== RCS file: /cvsroot/windom/windom/src/wind_get.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- wind_get.c 26 Feb 2006 02:09:10 -0000 1.25 +++ wind_get.c 6 Feb 2007 21:09:52 -0000 1.26 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: av_waitfor.c =================================================================== RCS file: /cvsroot/windom/windom/src/av_waitfor.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- av_waitfor.c 3 Jan 2006 13:52:34 -0000 1.5 +++ av_waitfor.c 6 Feb 2007 21:09:44 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: fsel.h =================================================================== RCS file: /cvsroot/windom/windom/src/fsel.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- fsel.h 3 Jan 2006 13:52:34 -0000 1.4 +++ fsel.h 6 Feb 2007 21:09:46 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: w_putbkgr.c =================================================================== RCS file: /cvsroot/windom/windom/src/w_putbkgr.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- w_putbkgr.c 3 Jan 2006 13:52:35 -0000 1.5 +++ w_putbkgr.c 6 Feb 2007 21:09:52 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: fsel.c =================================================================== RCS file: /cvsroot/windom/windom/src/fsel.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- fsel.c 3 Jan 2006 13:52:34 -0000 1.8 +++ fsel.c 6 Feb 2007 21:09:46 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: objc_attach.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_attach.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- objc_attach.c 12 Apr 2006 20:53:56 -0000 1.8 +++ objc_attach.c 6 Feb 2007 21:09:49 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_mvd.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_mvd.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- frm_mvd.c 3 Jan 2006 13:52:34 -0000 1.6 +++ frm_mvd.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: mnscroll.h =================================================================== RCS file: /cvsroot/windom/windom/src/mnscroll.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mnscroll.h 3 Jan 2006 13:52:34 -0000 1.4 +++ mnscroll.h 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: frm_keyhd.c =================================================================== RCS file: /cvsroot/windom/windom/src/frm_keyhd.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- frm_keyhd.c 3 Jan 2006 13:52:34 -0000 1.6 +++ frm_keyhd.c 6 Feb 2007 21:09:46 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: mnscroll.c =================================================================== RCS file: /cvsroot/windom/windom/src/mnscroll.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- mnscroll.c 25 Feb 2006 03:25:22 -0000 1.13 +++ mnscroll.c 6 Feb 2007 21:09:49 -0000 1.14 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: popup.c =================================================================== RCS file: /cvsroot/windom/windom/src/popup.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- popup.c 3 Jan 2006 13:52:34 -0000 1.9 +++ popup.c 6 Feb 2007 21:09:49 -0000 1.10 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_create.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_create.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- form_create.c 3 Jan 2006 13:52:34 -0000 1.8 +++ form_create.c 6 Feb 2007 21:09:46 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: clip_on.c =================================================================== RCS file: /cvsroot/windom/windom/src/clip_on.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- clip_on.c 3 Jan 2006 13:52:34 -0000 1.6 +++ clip_on.c 6 Feb 2007 21:09:45 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: do_update.c =================================================================== RCS file: /cvsroot/windom/windom/src/do_update.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- do_update.c 3 Jan 2006 13:52:34 -0000 1.14 +++ do_update.c 6 Feb 2007 21:09:46 -0000 1.15 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: bubble_evnt.c =================================================================== RCS file: /cvsroot/windom/windom/src/bubble_evnt.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- bubble_evnt.c 3 Jan 2006 13:52:34 -0000 1.5 +++ bubble_evnt.c 6 Feb 2007 21:09:44 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_close.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_close.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- form_close.c 3 Jan 2006 13:52:34 -0000 1.5 +++ form_close.c 6 Feb 2007 21:09:46 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: appl_exit.c =================================================================== RCS file: /cvsroot/windom/windom/src/appl_exit.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- appl_exit.c 22 Feb 2006 16:15:25 -0000 1.12 +++ appl_exit.c 6 Feb 2007 21:09:44 -0000 1.13 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_wdo.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_wdo.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- form_wdo.c 3 Jan 2006 13:52:34 -0000 1.7 +++ form_wdo.c 6 Feb 2007 21:09:46 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: form_thbget.c =================================================================== RCS file: /cvsroot/windom/windom/src/form_thbget.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- form_thbget.c 3 Jan 2006 13:52:34 -0000 1.4 +++ form_thbget.c 6 Feb 2007 21:09:46 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: ob_istype.c =================================================================== RCS file: /cvsroot/windom/windom/src/ob_istype.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ob_istype.c 3 Jan 2006 13:52:34 -0000 1.4 +++ ob_istype.c 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: rsrc_userdraw.c =================================================================== RCS file: /cvsroot/windom/windom/src/rsrc_userdraw.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- rsrc_userdraw.c 3 Jan 2006 13:52:34 -0000 1.7 +++ rsrc_userdraw.c 6 Feb 2007 21:09:49 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: list.c =================================================================== RCS file: /cvsroot/windom/windom/src/list.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- list.c 3 Jan 2006 13:52:34 -0000 1.5 +++ list.c 6 Feb 2007 21:09:48 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: scrap_txtread.c =================================================================== RCS file: /cvsroot/windom/windom/src/scrap_txtread.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- scrap_txtread.c 3 Jan 2006 13:52:34 -0000 1.4 +++ scrap_txtread.c 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: objc_string.c =================================================================== RCS file: /cvsroot/windom/windom/src/objc_string.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- objc_string.c 3 Jan 2006 13:52:34 -0000 1.6 +++ objc_string.c 6 Feb 2007 21:09:49 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: snd_arrw.c =================================================================== RCS file: /cvsroot/windom/windom/src/snd_arrw.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- snd_arrw.c 3 Jan 2006 13:52:34 -0000 1.5 +++ snd_arrw.c 6 Feb 2007 21:09:50 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: conv_path.c =================================================================== RCS file: /cvsroot/windom/windom/src/conv_path.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- conv_path.c 3 Jan 2006 13:52:34 -0000 1.5 +++ conv_path.c 6 Feb 2007 21:09:45 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_extfree.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_extfree.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- udlib_extfree.c 3 Jan 2006 13:52:35 -0000 1.5 +++ udlib_extfree.c 6 Feb 2007 21:09:51 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: vst_loadfonts.c =================================================================== RCS file: /cvsroot/windom/windom/src/vst_loadfonts.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- vst_loadfonts.c 3 Jan 2006 13:52:35 -0000 1.6 +++ vst_loadfonts.c 6 Feb 2007 21:09:52 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: std_fntchg.c =================================================================== RCS file: /cvsroot/windom/windom/src/std_fntchg.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- std_fntchg.c 3 Jan 2006 13:52:35 -0000 1.5 +++ std_fntchg.c 6 Feb 2007 21:09:50 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: snd_rdw.c =================================================================== RCS file: /cvsroot/windom/windom/src/snd_rdw.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- snd_rdw.c 3 Jan 2006 13:52:35 -0000 1.6 +++ snd_rdw.c 6 Feb 2007 21:09:50 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib_unextended.c =================================================================== RCS file: /cvsroot/windom/windom/src/udlib_unextended.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- udlib_unextended.c 3 Jan 2006 13:52:35 -0000 1.5 +++ udlib_unextended.c 6 Feb 2007 21:09:52 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: clip_off.c =================================================================== RCS file: /cvsroot/windom/windom/src/clip_off.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- clip_off.c 3 Jan 2006 13:52:34 -0000 1.6 +++ clip_off.c 6 Feb 2007 21:09:45 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: w_setpal.c =================================================================== RCS file: /cvsroot/windom/windom/src/w_setpal.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- w_setpal.c 3 Jan 2006 13:52:35 -0000 1.5 +++ w_setpal.c 6 Feb 2007 21:09:52 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: evnt_redraw.c =================================================================== RCS file: /cvsroot/windom/windom/src/evnt_redraw.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- evnt_redraw.c 22 Feb 2006 18:28:10 -0000 1.16 +++ evnt_redraw.c 6 Feb 2007 21:09:46 -0000 1.17 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: mouse.h =================================================================== RCS file: /cvsroot/windom/windom/src/mouse.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mouse.h 3 Jan 2006 13:52:34 -0000 1.4 +++ mouse.h 6 Feb 2007 21:09:49 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: import_xobjc.mak =================================================================== RCS file: /cvsroot/windom/windom/src/import_xobjc.mak,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- import_xobjc.mak 3 Jan 2006 13:52:34 -0000 1.3 +++ import_xobjc.mak 6 Feb 2007 21:09:48 -0000 1.4 @@ -1,5 +1,5 @@ # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHOR... [truncated message content] |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:28
|
Update of /cvsroot/windom/windom/demo In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/demo Modified Files: evnt-av.c evnt-fnc.c files.mak gcc.mak gcc281.mak global.c global.h load-bub.c main.c pc.mak setup.c sox.mak util.c win-cust.c win-divr.c win-form.c win-fram.c win-tool.c Log Message: year++ Index: files.mak =================================================================== RCS file: /cvsroot/windom/windom/demo/files.mak,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- files.mak 3 Jan 2006 14:15:46 -0000 1.2 +++ files.mak 6 Feb 2007 21:09:41 -0000 1.3 @@ -1,7 +1,7 @@ #!make -f # # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: pc.mak =================================================================== RCS file: /cvsroot/windom/windom/demo/pc.mak,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- pc.mak 3 Jan 2006 14:15:46 -0000 1.5 +++ pc.mak 6 Feb 2007 21:09:41 -0000 1.6 @@ -1,7 +1,7 @@ #!make -f # # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: win-divr.c =================================================================== RCS file: /cvsroot/windom/windom/demo/win-divr.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- win-divr.c 22 Mar 2006 20:58:31 -0000 1.7 +++ win-divr.c 6 Feb 2007 21:09:41 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: win-form.c =================================================================== RCS file: /cvsroot/windom/windom/demo/win-form.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- win-form.c 22 Mar 2006 20:58:31 -0000 1.10 +++ win-form.c 6 Feb 2007 21:09:41 -0000 1.11 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: util.c =================================================================== RCS file: /cvsroot/windom/windom/demo/util.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- util.c 22 Mar 2006 20:58:31 -0000 1.8 +++ util.c 6 Feb 2007 21:09:41 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: win-cust.c =================================================================== RCS file: /cvsroot/windom/windom/demo/win-cust.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- win-cust.c 22 Mar 2006 20:58:31 -0000 1.14 +++ win-cust.c 6 Feb 2007 21:09:41 -0000 1.15 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: evnt-av.c =================================================================== RCS file: /cvsroot/windom/windom/demo/evnt-av.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- evnt-av.c 14 Mar 2006 19:45:41 -0000 1.6 +++ evnt-av.c 6 Feb 2007 21:09:41 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: win-fram.c =================================================================== RCS file: /cvsroot/windom/windom/demo/win-fram.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- win-fram.c 14 Mar 2006 19:45:41 -0000 1.8 +++ win-fram.c 6 Feb 2007 21:09:41 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: sox.mak =================================================================== RCS file: /cvsroot/windom/windom/demo/sox.mak,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- sox.mak 3 Jan 2006 14:15:46 -0000 1.5 +++ sox.mak 6 Feb 2007 21:09:41 -0000 1.6 @@ -1,5 +1,5 @@ # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: setup.c =================================================================== RCS file: /cvsroot/windom/windom/demo/setup.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- setup.c 22 Mar 2006 20:58:30 -0000 1.7 +++ setup.c 6 Feb 2007 21:09:41 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: gcc.mak =================================================================== RCS file: /cvsroot/windom/windom/demo/gcc.mak,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- gcc.mak 3 Jan 2006 14:15:46 -0000 1.6 +++ gcc.mak 6 Feb 2007 21:09:41 -0000 1.7 @@ -1,7 +1,7 @@ #!make -f # # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: win-tool.c =================================================================== RCS file: /cvsroot/windom/windom/demo/win-tool.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- win-tool.c 22 Mar 2006 20:58:31 -0000 1.11 +++ win-tool.c 6 Feb 2007 21:09:41 -0000 1.12 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: main.c =================================================================== RCS file: /cvsroot/windom/windom/demo/main.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- main.c 14 Feb 2006 20:57:15 -0000 1.9 +++ main.c 6 Feb 2007 21:09:41 -0000 1.10 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: load-bub.c =================================================================== RCS file: /cvsroot/windom/windom/demo/load-bub.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- load-bub.c 14 Feb 2006 20:57:15 -0000 1.3 +++ load-bub.c 6 Feb 2007 21:09:41 -0000 1.4 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: evnt-fnc.c =================================================================== RCS file: /cvsroot/windom/windom/demo/evnt-fnc.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- evnt-fnc.c 22 Mar 2006 20:58:30 -0000 1.13 +++ evnt-fnc.c 6 Feb 2007 21:09:41 -0000 1.14 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: global.h =================================================================== RCS file: /cvsroot/windom/windom/demo/global.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- global.h 22 Mar 2006 20:58:30 -0000 1.7 +++ global.h 6 Feb 2007 21:09:41 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: gcc281.mak =================================================================== RCS file: /cvsroot/windom/windom/demo/gcc281.mak,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gcc281.mak 3 Jan 2006 14:15:46 -0000 1.3 +++ gcc281.mak 6 Feb 2007 21:09:41 -0000 1.4 @@ -1,7 +1,7 @@ #!make -f # # WinDom: a high level GEM library -# Copyright (c) 1997-2006 windom authors (see AUTHORS file) +# Copyright (c) 1997-2007 windom authors (see AUTHORS file) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Index: global.c =================================================================== RCS file: /cvsroot/windom/windom/demo/global.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- global.c 14 Feb 2006 20:57:15 -0000 1.3 +++ global.c 6 Feb 2007 21:09:41 -0000 1.4 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:28
|
Update of /cvsroot/windom/windom/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/include Modified Files: av.h mt_wndm.h scancode.h windom.h Log Message: year++ Index: scancode.h =================================================================== RCS file: /cvsroot/windom/windom/include/scancode.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- scancode.h 3 Jan 2006 14:46:23 -0000 1.4 +++ scancode.h 6 Feb 2007 21:09:43 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: mt_wndm.h =================================================================== RCS file: /cvsroot/windom/windom/include/mt_wndm.h,v retrieving revision 1.60 retrieving revision 1.61 diff -u -d -r1.60 -r1.61 --- mt_wndm.h 22 Jun 2006 09:40:21 -0000 1.60 +++ mt_wndm.h 6 Feb 2007 21:09:43 -0000 1.61 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: windom.h =================================================================== RCS file: /cvsroot/windom/windom/include/windom.h,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- windom.h 17 Jan 2006 20:00:23 -0000 1.58 +++ windom.h 6 Feb 2007 21:09:43 -0000 1.59 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: av.h =================================================================== RCS file: /cvsroot/windom/windom/include/av.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- av.h 3 Jan 2006 14:46:23 -0000 1.4 +++ av.h 6 Feb 2007 21:09:43 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:27
|
Update of /cvsroot/windom/windom/examples/multifrm In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/multifrm Modified Files: multifrm.c Log Message: year++ Index: multifrm.c =================================================================== RCS file: /cvsroot/windom/windom/examples/multifrm/multifrm.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- multifrm.c 3 Jan 2006 14:39:25 -0000 1.5 +++ multifrm.c 6 Feb 2007 21:09:42 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:26
|
Update of /cvsroot/windom/windom/examples/mousexy In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/mousexy Modified Files: mousexy.c Log Message: year++ Index: mousexy.c =================================================================== RCS file: /cvsroot/windom/windom/examples/mousexy/mousexy.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mousexy.c 3 Jan 2006 14:39:25 -0000 1.4 +++ mousexy.c 6 Feb 2007 21:09:42 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:26
|
Update of /cvsroot/windom/windom/examples/component In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/component Modified Files: cal.c comptest.c Log Message: year++ Index: cal.c =================================================================== RCS file: /cvsroot/windom/windom/examples/component/cal.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- cal.c 3 Jan 2006 14:39:25 -0000 1.7 +++ cal.c 6 Feb 2007 21:09:42 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: comptest.c =================================================================== RCS file: /cvsroot/windom/windom/examples/component/comptest.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- comptest.c 3 Jan 2006 14:39:25 -0000 1.6 +++ comptest.c 6 Feb 2007 21:09:42 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
Update of /cvsroot/windom/windom/examples/tutorial In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/tutorial Modified Files: text.c text.h tut-1-1.c tut-1-2.c tut-1-3.c tut-1-4.c tut-2-1.c tut-2-2.c tut-2-3.c tutorial.c Log Message: year++ Index: tut-2-1.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-2-1.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-2-1.c 3 Jan 2006 14:39:25 -0000 1.4 +++ tut-2-1.c 6 Feb 2007 21:09:43 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-1-4.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-1-4.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- tut-1-4.c 3 Jan 2006 14:39:25 -0000 1.2 +++ tut-1-4.c 6 Feb 2007 21:09:43 -0000 1.3 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-1-2.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-1-2.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-1-2.c 3 Jan 2006 14:39:25 -0000 1.4 +++ tut-1-2.c 6 Feb 2007 21:09:43 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-1-1.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-1-1.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- tut-1-1.c 3 Jan 2006 14:39:25 -0000 1.3 +++ tut-1-1.c 6 Feb 2007 21:09:43 -0000 1.4 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tutorial.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tutorial.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- tutorial.c 3 Jan 2006 14:39:25 -0000 1.2 +++ tutorial.c 6 Feb 2007 21:09:43 -0000 1.3 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-2-3.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-2-3.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- tut-2-3.c 3 Jan 2006 14:39:25 -0000 1.5 +++ tut-2-3.c 6 Feb 2007 21:09:43 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-1-3.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-1-3.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- tut-1-3.c 3 Jan 2006 14:39:25 -0000 1.5 +++ tut-1-3.c 6 Feb 2007 21:09:43 -0000 1.6 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: text.h =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/text.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- text.h 3 Jan 2006 14:39:25 -0000 1.2 +++ text.h 6 Feb 2007 21:09:43 -0000 1.3 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: text.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/text.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- text.c 3 Jan 2006 14:39:25 -0000 1.2 +++ text.c 6 Feb 2007 21:09:43 -0000 1.3 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: tut-2-2.c =================================================================== RCS file: /cvsroot/windom/windom/examples/tutorial/tut-2-2.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tut-2-2.c 3 Jan 2006 14:39:25 -0000 1.4 +++ tut-2-2.c 6 Feb 2007 21:09:43 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:24
|
Update of /cvsroot/windom/windom/examples/frame In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/frame Modified Files: tstframe.c txtframe.c viewtext.c viewtext.h wdiff.c Log Message: year++ Index: tstframe.c =================================================================== RCS file: /cvsroot/windom/windom/examples/frame/tstframe.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- tstframe.c 23 Jan 2006 19:23:47 -0000 1.8 +++ tstframe.c 6 Feb 2007 21:09:42 -0000 1.9 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: wdiff.c =================================================================== RCS file: /cvsroot/windom/windom/examples/frame/wdiff.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- wdiff.c 23 Jan 2006 19:23:48 -0000 1.14 +++ wdiff.c 6 Feb 2007 21:09:42 -0000 1.15 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: viewtext.h =================================================================== RCS file: /cvsroot/windom/windom/examples/frame/viewtext.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- viewtext.h 3 Jan 2006 14:39:25 -0000 1.4 +++ viewtext.h 6 Feb 2007 21:09:42 -0000 1.5 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: txtframe.c =================================================================== RCS file: /cvsroot/windom/windom/examples/frame/txtframe.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- txtframe.c 23 Jan 2006 19:23:48 -0000 1.9 +++ txtframe.c 6 Feb 2007 21:09:42 -0000 1.10 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: viewtext.c =================================================================== RCS file: /cvsroot/windom/windom/examples/frame/viewtext.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- viewtext.c 3 Jan 2006 14:39:25 -0000 1.7 +++ viewtext.c 6 Feb 2007 21:09:42 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:21
|
Update of /cvsroot/windom/windom/examples/bubble In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/bubble Modified Files: bubbltst.c Log Message: year++ Index: bubbltst.c =================================================================== RCS file: /cvsroot/windom/windom/examples/bubble/bubbltst.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- bubbltst.c 3 Jan 2006 14:39:24 -0000 1.7 +++ bubbltst.c 6 Feb 2007 21:09:42 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:21
|
Update of /cvsroot/windom/windom/examples/slider In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/examples/slider Modified Files: slider.c Log Message: year++ Index: slider.c =================================================================== RCS file: /cvsroot/windom/windom/examples/slider/slider.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- slider.c 3 Jan 2006 14:39:25 -0000 1.6 +++ slider.c 6 Feb 2007 21:09:43 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |
From: Arnaud B. <ber...@us...> - 2007-02-06 21:10:21
|
Update of /cvsroot/windom/windom/include/windom In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9015/include/windom Modified Files: list.h udlib.h Log Message: year++ Index: list.h =================================================================== RCS file: /cvsroot/windom/windom/include/windom/list.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- list.h 3 Jan 2006 15:13:00 -0000 1.7 +++ list.h 6 Feb 2007 21:09:43 -0000 1.8 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public Index: udlib.h =================================================================== RCS file: /cvsroot/windom/windom/include/windom/udlib.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- udlib.h 3 Jan 2006 14:46:25 -0000 1.6 +++ udlib.h 6 Feb 2007 21:09:43 -0000 1.7 @@ -1,6 +1,6 @@ /* * WinDom: a high level GEM library - * Copyright (c) 1997-2006 windom authors (see AUTHORS file) + * Copyright (c) 1997-2007 windom authors (see AUTHORS file) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |