[Scummvm-cvs-logs] scummvm master -> 5f342562d1d552c89ee627dfa5a5f52169a4326c

lordhoto lordhoto at gmail.com
Sat Mar 10 02:03:13 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5f342562d1 COMMON: Fix formatting in substream.h.


Commit: 5f342562d1d552c89ee627dfa5a5f52169a4326c
    https://github.com/scummvm/scummvm/commit/5f342562d1d552c89ee627dfa5a5f52169a4326c
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2012-03-09T17:01:34-08:00

Commit Message:
COMMON: Fix formatting in substream.h.

Changed paths:
    common/substream.h



diff --git a/common/substream.h b/common/substream.h
index 7e67389..6475b7a 100644
--- a/common/substream.h
+++ b/common/substream.h
@@ -106,14 +106,14 @@ public:
  */
 class SafeSubReadStream : public SeekableSubReadStream {
 public:
- SafeSubReadStream(SeekableReadStream *parentStream, uint32 begin, uint32 end, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO) :
-		SeekableSubReadStream(parentStream, begin, end, disposeParentStream) {
+	SafeSubReadStream(SeekableReadStream *parentStream, uint32 begin, uint32 end, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO)
+		: SeekableSubReadStream(parentStream, begin, end, disposeParentStream) {
 	}
 
- virtual uint32 read(void *dataPtr, uint32 dataSize);
+	virtual uint32 read(void *dataPtr, uint32 dataSize);
 };
 
 
-}	// End of namespace Common
+} // End of namespace Common
 
 #endif






More information about the Scummvm-git-logs mailing list