mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Fix some unused parameter warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5403 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f411496289
commit
b65f8073ba
195 changed files with 574 additions and 518 deletions
|
|
@ -738,6 +738,8 @@ gnome_canvas_waveview_set_property (GObject *object,
|
|||
GParamSpec *pspec)
|
||||
|
||||
{
|
||||
(void) pspec;
|
||||
|
||||
GnomeCanvasItem *item;
|
||||
GnomeCanvasWaveView *waveview;
|
||||
int redraw = FALSE;
|
||||
|
|
@ -1861,6 +1863,13 @@ gnome_canvas_waveview_bounds (GnomeCanvasItem *item, double *x1, double *y1, dou
|
|||
static double
|
||||
gnome_canvas_waveview_point (GnomeCanvasItem *item, double x, double y, int cx, int cy, GnomeCanvasItem **actual_item)
|
||||
{
|
||||
(void) item;
|
||||
(void) x;
|
||||
(void) y;
|
||||
(void) cx;
|
||||
(void) cy;
|
||||
(void) actual_item;
|
||||
|
||||
/* XXX for now, point is never inside the wave
|
||||
GnomeCanvasWaveView *waveview;
|
||||
double x1, y1, x2, y2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue