projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Two missing #includes in image code.
[wxWidgets.git]
/
src
/
common
/
gifdecod.cpp
diff --git
a/src/common/gifdecod.cpp
b/src/common/gifdecod.cpp
index 3345366d7b250423acf27a58f1adb0c8404f9505..0a8a6f525bf6e64d64bb279da17cdb7a8568c076 100644
(file)
--- a/
src/common/gifdecod.cpp
+++ b/
src/common/gifdecod.cpp
@@
-446,7
+446,7
@@
bool wxGIFDecoder::CanRead()
unsigned char buf[3];
m_f->Read(buf, 3);
-
stream.
SeekI(-3, wxFromCurrent);
+
m_f->
SeekI(-3, wxFromCurrent);
return (memcmp(buf, "GIF", 3) == 0);
}