Some final changes to the beos backend before checkin were wrong, fixing.

This commit is contained in:
Christian Biesinger 2005-12-19 11:01:42 +00:00
parent 9af7220b68
commit 70c45dd502
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-12-19 Christian Biesinger <cbiesinger@web.de>
* configure.in:
* src/cairo-beos-surface.cpp: Some final changes to the beos backend
before checkin were wrong, fixing.
2005-12-19 Christian Biesinger <cbiesinger@web.de>
* src/cairo-beos-surface.cpp: Use gtk-doc syntax rather than doxygen syntax

View file

@ -212,7 +212,7 @@ AC_ARG_ENABLE(beos,
if test "x$cairo_platform_beos" != "xyes" ; then
if test "x$use_beos" = "xyes"; then
AC_MSG_WARN([The BeOS backend requires a BeOS platform; disabling])
# use_beos=no
use_beos=no
fi
fi

View file

@ -52,7 +52,7 @@
#define CAIRO_INT_STATUS_SUCCESS (cairo_int_status_t)(CAIRO_STATUS_SUCCESS)
struct cairo_beos_surface {
struct cairo_beos_surface_t {
cairo_surface_t base;
BView* view;
@ -70,7 +70,7 @@ struct cairo_beos_surface {
BBitmap* bitmap;
} cairo_beos_surface_t;
};
static BRect
_cairo_rect_to_brect (const cairo_rectangle_t* rect)