add lost return when adding kees patch
diff --git a/poppler/Object.h b/poppler/Object.h
index 19cec9d..c73d010 100644
--- a/poppler/Object.h
+++ b/poppler/Object.h
@@ -295,7 +295,7 @@
 #include "Stream.h"
 
 inline GBool Object::streamIs(char *dictType)
-  { OBJECT_TYPE_CHECK(objStream); stream->getDict()->is(dictType); }
+  { OBJECT_TYPE_CHECK(objStream); return stream->getDict()->is(dictType); }
 
 inline GBool Object::isStream(char *dictType)
   { return type == objStream && streamIs(dictType); }