Missing WITH_NS_SVG #ifdef

svn path=/trunk/netsurf/; revision=7524
This commit is contained in:
Chris Young 2009-05-19 07:30:00 +00:00
parent 6f120338ed
commit 1f90347f9b
2 changed files with 4 additions and 0 deletions

View File

@ -247,6 +247,7 @@ bool ami_easy_clipboard_bitmap(struct bitmap *bitmap)
}
}
#ifdef WITH_NS_SVG
bool ami_easy_clipboard_svg(struct content *c)
{
if(c->type != CONTENT_SVG) return false;
@ -259,3 +260,4 @@ bool ami_easy_clipboard_svg(struct content *c)
return true;
}
#endif

View File

@ -23,5 +23,7 @@ void ami_clipboard_init(void);
void ami_clipboard_free(void);
bool ami_easy_clipboard(char *text);
bool ami_easy_clipboard_bitmap(struct bitmap *bitmap);
#ifdef WITH_NS_SVG
bool ami_easy_clipboard_svg(struct content *c);
#endif
#endif