author | sandman <sandman> | 2002-09-23 10:16:35 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-09-23 10:16:35 (UTC) |
commit | 4af73fb07b69dce910abb2ac098b1045403cda67 (patch) (side-by-side diff) | |
tree | f8a7c1ff8a18a88709ac52e42a472431f0aa7010 | |
parent | 8b06ea9e4407628ebae54d63592e8b8c940a62ad (diff) | |
download | opie-4af73fb07b69dce910abb2ac098b1045403cda67.zip opie-4af73fb07b69dce910abb2ac098b1045403cda67.tar.gz opie-4af73fb07b69dce910abb2ac098b1045403cda67.tar.bz2 |
gcc workaround for inline applied once again .. thanks Harlekin ;)
-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 @@ -3713,7 +3713,7 @@ static int cmpEmbedImage(const void *a, const void *b) const EmbedImage* eb = (const EmbedImage*)b; return strcmp(ea->name,eb->name); } -inline const QImage& qembed_findImage(const char* name) +inline static const QImage& qembed_findImage(const char* name) { EmbedImage key; key.name = name; EmbedImage* r = (EmbedImage*)bsearch( &key, embed_image_vec, |