diff options
author | Hans Breuer <hans@breuer.org> | 2007-06-15 15:25:50 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2007-06-15 15:25:50 +0000 |
commit | 49fc7e15ee345fbae8960dfc2c4437364f8acb50 (patch) | |
tree | 32a2f75541c52b2ddc8e8841a847821aea9c2353 /tests/testprint.c | |
parent | b2dea46b691e4e4d990e36ba4a71d0dcabb86890 (diff) | |
download | gdk-pixbuf-49fc7e15ee345fbae8960dfc2c4437364f8acb50.tar.gz |
updated explicit usage of RegisterClassExW to match the WNDCLASSEXW. True
2007-06-15 Hans Breuer <hans@breuer.org>
* gtk/makefile.msc.in tests/makefile.msc : updated
* gdk/win32/gdkwindow-win32.c : explicit usage of RegisterClassExW
to match the WNDCLASSEXW.
True dynamic linking of SetLayeredWindowAttributes
* tests/testprint.c tests/testnouiprint.c : use G_PI
svn path=/trunk/; revision=18140
Diffstat (limited to 'tests/testprint.c')
-rw-r--r-- | tests/testprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testprint.c b/tests/testprint.c index e39c3a991..1da7af97d 100644 --- a/tests/testprint.c +++ b/tests/testprint.c @@ -62,7 +62,7 @@ draw_page (GtkPrintOperation *operation, /* Draw some lines */ cairo_move_to (cr, 20, 10); cairo_line_to (cr, 40, 20); - cairo_arc (cr, 60, 60, 20, 0, M_PI); + cairo_arc (cr, 60, 60, 20, 0, G_PI); cairo_line_to (cr, 80, 20); cairo_set_source_rgb (cr, 0, 0, 0); |