summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/inlinepics_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/inlinepics_p.h b/library/inlinepics_p.h
index daa7413..c796326 100644
--- a/library/inlinepics_p.h
+++ b/library/inlinepics_p.h
@@ -3710,13 +3710,13 @@ static struct EmbedImage {
3710static int cmpEmbedImage(const void *a, const void *b) 3710static int cmpEmbedImage(const void *a, const void *b)
3711{ 3711{
3712 const EmbedImage* ea = (const EmbedImage*)a; 3712 const EmbedImage* ea = (const EmbedImage*)a;
3713 const EmbedImage* eb = (const EmbedImage*)b; 3713 const EmbedImage* eb = (const EmbedImage*)b;
3714 return strcmp(ea->name,eb->name); 3714 return strcmp(ea->name,eb->name);
3715} 3715}
3716inline const QImage& qembed_findImage(const char* name) 3716inline static const QImage& qembed_findImage(const char* name)
3717{ 3717{
3718 EmbedImage key; key.name = name; 3718 EmbedImage key; key.name = name;
3719 EmbedImage* r = (EmbedImage*)bsearch( &key, embed_image_vec, 3719 EmbedImage* r = (EmbedImage*)bsearch( &key, embed_image_vec,
3720 sizeof(embed_image_vec)/sizeof(EmbedImage), sizeof(EmbedImage), cmpEmbedImage ); 3720 sizeof(embed_image_vec)/sizeof(EmbedImage), sizeof(EmbedImage), cmpEmbedImage );
3721 QImage* img; 3721 QImage* img;
3722 if ( r ) { 3722 if ( r ) {