-rw-r--r-- | library/inlinepics_p.h | 2 |
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 | |||
@@ -3712,9 +3712,9 @@ static int cmpEmbedImage(const void *a, const void *b) | |||
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 | } |
3716 | inline const QImage& qembed_findImage(const char* name) | 3716 | inline 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 ); |