put cairo variable declaration inside #if HAS_CAIRO to avoid compiler warnings.
This commit is contained in:
parent
ff55dc9c14
commit
d20ef12b15
|
|
@ -193,8 +193,11 @@ void symbol_bbox(int i, double *x1,double *y1, double *x2, double *y2)
|
||||||
static void del_rect_line_arc_poly(void)
|
static void del_rect_line_arc_poly(void)
|
||||||
{
|
{
|
||||||
xRect tmp;
|
xRect tmp;
|
||||||
int c, j, i, k, itmp, customfont;
|
int c, j, i, k, itmp;
|
||||||
double dtmp;
|
double dtmp;
|
||||||
|
#if HAS_CAIRO==1
|
||||||
|
int customfont;
|
||||||
|
#endif
|
||||||
|
|
||||||
for(k=0;k<xctx->lastsel;k++)
|
for(k=0;k<xctx->lastsel;k++)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue