summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-01-03 17:51:38 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-01-03 17:51:38 +0000
commit600e5b47219b21ec64c4fef1a88feca03b86aa29 (patch)
tree365dba6c3b3cbcda428671b790f9de382413590a /docs
parent31feb29bdf6b323516d57ecd4fdb4def72e5dbdd (diff)
downloadgdk-pixbuf-600e5b47219b21ec64c4fef1a88feca03b86aa29.tar.gz
Make it build.
2005-01-03 Matthias Clasen <mclasen@redhat.com> * docs/tutorial/gtk-tut.sgml: Make it build.
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/tutorial/gtk-tut.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/gtk-tut.sgml b/docs/tutorial/gtk-tut.sgml
index a31c73143..8ee241f2f 100755
--- a/docs/tutorial/gtk-tut.sgml
+++ b/docs/tutorial/gtk-tut.sgml
@@ -5602,8 +5602,8 @@ static void calendar_date_to_string( CalendarData *data,
gtk_calendar_get_date (GTK_CALENDAR (data-&gt;window),
&amp;year, &amp;month, &amp;day);
- g_date_set_dmy (&date, day, month + 1, year);
- g_date_strftime (buffer, buff_len - 1, "%x", &date);
+ g_date_set_dmy (&amp;date, day, month + 1, year);
+ g_date_strftime (buffer, buff_len - 1, "%x", &amp;date);
}