From: Eric W. <war...@us...> - 2001-09-28 23:45:22
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv9001/src Modified Files: gtkticker.h Log Message: no // Index: gtkticker.h =================================================================== RCS file: /cvsroot/gaim/gaim/src/gtkticker.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gtkticker.h 2000/11/21 01:00:45 1.2 +++ gtkticker.h 2001/09/28 23:45:19 1.3 @@ -45,17 +45,17 @@ typedef struct _GtkTickerClass GtkTickerClass; typedef struct _GtkTickerChild GtkTickerChild; -// XXX children move from right to left, should be able to go other way +/* XXX children move from right to left, should be able to go other way */ struct _GtkTicker { GtkContainer container; - guint interval; // how often to scootch - guint spacing; // inter-child horizontal spacing - guint scootch; // how many pixels to move each scootch - gint timer; // timer object - guint total; // total width of widgets - guint width; // width of containing window + guint interval; /* how often to scootch */ + guint spacing; /* inter-child horizontal spacing */ + guint scootch; /* how many pixels to move each scootch */ + gint timer; /* timer object */ + guint total; /* total width of widgets */ + guint width; /* width of containing window */ gboolean dirty; GList *children; }; |