From 70c45dd5020af78ee2532ceb8d55eea619bc4aaa Mon Sep 17 00:00:00 2001 From: Christian Biesinger Date: Mon, 19 Dec 2005 11:01:42 +0000 Subject: [PATCH] Some final changes to the beos backend before checkin were wrong, fixing. --- ChangeLog | 6 ++++++ configure.in | 2 +- src/cairo-beos-surface.cpp | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5cd77b3e5..db02b4086 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-12-19 Christian Biesinger + + * configure.in: + * src/cairo-beos-surface.cpp: Some final changes to the beos backend + before checkin were wrong, fixing. + 2005-12-19 Christian Biesinger * src/cairo-beos-surface.cpp: Use gtk-doc syntax rather than doxygen syntax diff --git a/configure.in b/configure.in index a795ab6f9..7eb7a10b9 100644 --- a/configure.in +++ b/configure.in @@ -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 diff --git a/src/cairo-beos-surface.cpp b/src/cairo-beos-surface.cpp index fb990249f..d9c3a9534 100644 --- a/src/cairo-beos-surface.cpp +++ b/src/cairo-beos-surface.cpp @@ -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)