_points[1] = points[1];
}
- void Ellipse::Print(GVJ_t* job, pointf first, pointf last, bool allowCurves) const
+ void Ellipse::Print(GVJ_t* job, pointf, pointf, bool) const
{
gvputs(job, "<Geom>\n");
if (!_filled)
return NULL;
}
- void Polygon::Print(GVJ_t* job, pointf first, pointf last, bool allowCurves) const
+ void Polygon::Print(GVJ_t* job, pointf first, pointf last, bool) const
{
gvputs(job, "<Geom>\n");
if (!_filled)
return NULL;
}
- void Polyline::Print(GVJ_t* job, pointf first, pointf last, bool allowCurves) const
+ void Polyline::Print(GVJ_t* job, pointf first, pointf last, bool) const
{
gvputs(job, "<Geom>\n");
if (_pointCount > 0)
gvputs(job, "</Page>\n");
}
- void Render::BeginNode(GVJ_t* job)
+ void Render::BeginNode(GVJ_t*)
{
_inComponent = true;
ClearGraphicsAndTexts();
ClearGraphicsAndTexts();
}
- void Render::BeginEdge(GVJ_t* job)
+ void Render::BeginEdge(GVJ_t*)
{
_inComponent = true;
ClearGraphicsAndTexts();
PrintOuterShape(job, *graphic);
}
- void Render::AddText(GVJ_t* job, const Text* text)
+ void Render::AddText(GVJ_t*, const Text* text)
{
/* if in component, accumulate for end node/edge */
if (_inComponent)
_texts.push_back(text);
}
- void Render::AddHyperlink(GVJ_t* job, const Hyperlink* hyperlink)
+ void Render::AddHyperlink(GVJ_t*, const Hyperlink* hyperlink)
{
/* if in component, accumulate for end node/edge */
if (_inComponent)
_run->Print(job, index);
}
- Hyperlink* Hyperlink::CreateHyperlink(GVJ_t* job, char* url, char* tooltip, char* target, char* id)
+ Hyperlink* Hyperlink::CreateHyperlink(GVJ_t*, char* url, char* tooltip, char* target, char*)
{
return new Hyperlink(tooltip, url, target);
}
return g->parent;
}
-Agraph_t *nextsupg(Agraph_t *g, Agraph_t *sg)
+Agraph_t *nextsupg(Agraph_t*, Agraph_t*)
{
return NULL;
}