summaryrefslogtreecommitdiff
path: root/beos/plotters.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-01 22:04:03 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-01 22:04:03 +0100
commit91515e2b566bee852f00ad9dbe68bc2beb8d1504 (patch)
tree15474113ebe9352398d76570b84b55020d5e8206 /beos/plotters.cpp
parent4d18947adb21aa3e06f2431900111ad17b58d80d (diff)
downloadnetsurf-91515e2b566bee852f00ad9dbe68bc2beb8d1504.tar.gz
netsurf-91515e2b566bee852f00ad9dbe68bc2beb8d1504.tar.bz2
update beos frontend to remove useage of depricated warn_user API
Diffstat (limited to 'beos/plotters.cpp')
-rw-r--r--beos/plotters.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/beos/plotters.cpp b/beos/plotters.cpp
index b7d1a2bce..3fd786ecd 100644
--- a/beos/plotters.cpp
+++ b/beos/plotters.cpp
@@ -40,8 +40,6 @@ extern "C" {
#include "beos/font.h"
#include "beos/gui.h"
#include "beos/plotters.h"
-//#include "beos/scaffolding.h"
-//#include "beos/options.h"
#include "beos/bitmap.h"
#warning MAKE ME static
@@ -128,7 +126,7 @@ bool nsbeos_plot_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *s
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -162,7 +160,7 @@ bool nsbeos_plot_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *s
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -207,7 +205,7 @@ bool nsbeos_plot_line(int x0, int y0, int x1, int y1, const plot_style_t *style)
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -235,7 +233,7 @@ bool nsbeos_plot_polygon(const int *p, unsigned int n, const plot_style_t *style
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -265,7 +263,7 @@ bool nsbeos_plot_clip(const struct rect *ns_clip)
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -296,7 +294,7 @@ bool nsbeos_plot_disc(int x, int y, int radius, const plot_style_t *style)
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -319,7 +317,7 @@ bool nsbeos_plot_arc(int x, int y, int radius, int angle1, int angle2, const plo
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -349,7 +347,7 @@ static bool nsbeos_plot_bbitmap(int x, int y, int width, int height,
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}
@@ -419,7 +417,7 @@ bool nsbeos_plot_bitmap(int x, int y, int width, int height,
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {
- warn_user("No GC", 0);
+ beos_warn_user("No GC", 0);
return false;
}