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 52d184b..892c321 100644
--- a/library/inlinepics_p.h
+++ b/library/inlinepics_p.h
@@ -5567,25 +5567,25 @@ static struct EmbedImage {
5567 { 96, 16, 8, (const unsigned char*)wordgame_shapes_data, 9, wordgame_shapes_ctable, TRUE, "wordgame_shapes" }, 5567 { 96, 16, 8, (const unsigned char*)wordgame_shapes_data, 9, wordgame_shapes_ctable, TRUE, "wordgame_shapes" },
5568 { 9, 8, 8, (const unsigned char*)xtopowerofy_data, 2, xtopowerofy_ctable, TRUE, "xtopowerofy" }, 5568 { 9, 8, 8, (const unsigned char*)xtopowerofy_data, 2, xtopowerofy_ctable, TRUE, "xtopowerofy" },
5569 { 13, 11, 8, (const unsigned char*)ythrootofx_data, 2, ythrootofx_ctable, TRUE, "ythrootofx" }, 5569 { 13, 11, 8, (const unsigned char*)ythrootofx_data, 2, ythrootofx_ctable, TRUE, "ythrootofx" },
5570 { 20, 20, 8, (const unsigned char*)zoom_data, 7, zoom_ctable, TRUE, "zoom" }, 5570 { 20, 20, 8, (const unsigned char*)zoom_data, 7, zoom_ctable, TRUE, "zoom" },
5571}; 5571};
5572 5572
5573static int cmpEmbedImage(const void *a, const void *b) 5573static int cmpEmbedImage(const void *a, const void *b)
5574{ 5574{
5575 const EmbedImage* ea = (const EmbedImage*)a; 5575 const EmbedImage* ea = (const EmbedImage*)a;
5576 const EmbedImage* eb = (const EmbedImage*)b; 5576 const EmbedImage* eb = (const EmbedImage*)b;
5577 return strcmp(ea->name,eb->name); 5577 return strcmp(ea->name,eb->name);
5578} 5578}
5579inline const QImage& qembed_findImage(const char* name) 5579inline static const QImage& qembed_findImage(const char* name)
5580{ 5580{
5581 EmbedImage key; key.name = name; 5581 EmbedImage key; key.name = name;
5582 EmbedImage* r = (EmbedImage*)bsearch( &key, embed_image_vec, 5582 EmbedImage* r = (EmbedImage*)bsearch( &key, embed_image_vec,
5583 sizeof(embed_image_vec)/sizeof(EmbedImage), sizeof(EmbedImage), cmpEmbedImage ); 5583 sizeof(embed_image_vec)/sizeof(EmbedImage), sizeof(EmbedImage), cmpEmbedImage );
5584 QImage* img; 5584 QImage* img;
5585 if ( r ) { 5585 if ( r ) {
5586 img = new QImage((uchar*)r->data, 5586 img = new QImage((uchar*)r->data,
5587 r->width, 5587 r->width,
5588 r->height, 5588 r->height,
5589 r->depth, 5589 r->depth,
5590#ifdef _WS_QWS_ 5590#ifdef _WS_QWS_
5591 (r->width*r->depth+31)/32*4, 5591 (r->width*r->depth+31)/32*4,