X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fbooleancurve.cpp;h=d7b87db456e9e4ba69462b34318a94d889da1d19;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=936187b6ec50ec10386a41e8e47fd07aa188b5cd;hpb=5ddcf36f04cfbd10fabda4e3c5633cb27cdd4c0a;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/booleancurve.cpp b/synfig-core/trunk/src/modules/lyr_std/booleancurve.cpp index 936187b..d7b87db 100644 --- a/synfig-core/trunk/src/modules/lyr_std/booleancurve.cpp +++ b/synfig-core/trunk/src/modules/lyr_std/booleancurve.cpp @@ -1,8 +1,8 @@ /* === S Y N F I G ========================================================= */ -/*! \file boolean_curve.cpp +/*! \file booleancurve.cpp ** \brief Boolean Curve Implementation File ** -** $Id: booleancurve.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -68,7 +68,7 @@ BooleanCurve::~BooleanCurve() bool BooleanCurve::set_param(const String & param, const synfig::ValueBase &value) { - if(param=="regions" && value.same_as(regions)) + if(param=="regions" && value.same_type_as(regions)) { vector bv; int size = value.get_list().size(); @@ -108,14 +108,14 @@ Layer::Vocab BooleanCurve::get_param_vocab()const return ret; } -Color BooleanCurve::get_color(Context context, const Point &pos)const +Color BooleanCurve::get_color(Context /*context*/, const Point &/*pos*/)const { Color c(Color::alpha()); return c; } -bool BooleanCurve::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const +bool BooleanCurve::accelerated_render(Context /*context*/,Surface */*surface*/,int /*quality*/, const RendDesc &/*renddesc*/, ProgressCallback */*cb*/)const { return false; }