
*** gantt.h~     Sat Jan 29 17:08:13 2000
--- gantt.h      Thu Feb  3 11:09:21 2000
***************
*** 21,27 ****
--- 21,32 ----
class QString;
class QDate;

+ const static int NUMTASKS = 100;  // max number of tasks to read
+ const static int TEXTPIXY = 50;   // number of pixels for the header (y)
+ const static int FONTSIZE = 8;    // task font size
+ const static int SPACING = 25;    // vertical space between tasks

+ 
class Gantt : public QWidget
 {
 Q_OBJECT
***************
*** 28,37 ****
 public:
         Gantt( char *filenamearg, QWidget *parent=0, const char *name=0 );
         
-                const static int NUMTASKS = 100;  // max number of tasks to read
-                const static int TEXTPIXY = 50;   // number of pixels for the header (y)
-                const static int FONTSIZE = 10;   // task font size
-                const static int SPACING = 25;    // vertical space between tasks
         struct task
                 {
                 int num;
--- 33,38 ----
