[Glade-users] dateedit - scratch that

Olexiy Avramchenko olexiy@irtech.cn.ua
Sat, 13 Dec 2003 15:14:37 +0200


Alef T Veld wrote:

>I think that's fixed.
>But what does
>
>gboolean    gtk_calendar_mark_day           (GtkCalendar *calendar,
>                                             guint day);
>
>want for day? a tstruct->tm_mday or a &tstruct->tm_day ?
>
Value, not a pointer: tstruct->tm_mday. 'guint' type means: 'unsigned 
int'. With '&' operator you're getting a pointer in C, so 
&tstruct->tm_mday is of type 'int*'.

    Olexiy