Update of /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer
In directory usw-pr-cvs1:/tmp/cvs-serv19334/de/cgarbs/apps/jprojecttimer
Modified Files:
GanttDiagram.java Task.java
Log Message:
kudos to Remi
Index: GanttDiagram.java
===================================================================
RCS file: /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer/GanttDiagram.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** GanttDiagram.java 2002/02/03 13:17:13 1.7
--- GanttDiagram.java 2002/02/03 15:35:42 1.8
***************
*** 4,7 ****
--- 4,8 ----
* 2001,2002 (C) by Christian Garbs <mi...@cg...>
* Jochen Luell <jo...@lu...>
+ * Remi POUJEAUX <pou...@mb...>
*
* Licensed under GNU GPL (see COPYING for details)
***************
*** 23,26 ****
--- 24,28 ----
/** @author Christian Garbs <mi...@cg...>
* @author Jochen Luell <jo...@lu...>
+ * @author Remi POUJEAUX <pou...@mb...>
* @version $Id$
*/
Index: Task.java
===================================================================
RCS file: /cvsroot/jprojecttimer/jprojecttimer/de/cgarbs/apps/jprojecttimer/Task.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Task.java 2002/02/03 13:17:13 1.4
--- Task.java 2002/02/03 15:35:42 1.5
***************
*** 2,7 ****
* $Id$
*
! * 2001 (C) by Christian Garbs <mi...@cg...>
*
* Licensed under GNU GPL (see COPYING for details)
*
--- 2,9 ----
* $Id$
*
! * 2001,2002 (C) by Christian Garbs <mi...@cg...>
! * Remi POUJEAUX <pou...@mb...>
*
+ *
* Licensed under GNU GPL (see COPYING for details)
*
***************
*** 19,22 ****
--- 21,25 ----
*
* @author Christian Garbs <mi...@cg...>
+ * @author Remi POUJEAUX <pou...@mb...>
* @version $Id$
*/
***************
*** 272,288 ****
public void paint(Graphics g, int x, int width, int y, int height, int cols, int textWidth, int taskYMargin)
{
- //g.setColor(Color.black);
-
- // Linie oben-> moved to GanttDiagram
- // g.drawLine(x,y,x+width,y);
-
- // Spalten -> moved to GanttDiagram
- //for (int c = 0; c < cols; c++) {
- // g.drawLine((int)( x + textWidth + (c * (width - textWidth)) / cols),
- // y,
- // (int) (x + textWidth + (c * (width - textWidth)) / cols),
- // y+height
- // );
- //}
// Text
--- 275,278 ----
|