[haiku-commits] r38502 - haiku/trunk/src/apps/mediaplayer/supplier

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 1 Sep 2010 19:57:18 +0200 (CEST)

Author: stippi
Date: 2010-09-01 19:57:18 +0200 (Wed, 01 Sep 2010)
New Revision: 38502
Changeset: http://dev.haiku-os.org/changeset/38502

Modified:
   haiku/trunk/src/apps/mediaplayer/supplier/MediaTrackVideoSupplier.cpp
Log:
Coding style fixes.


Modified: haiku/trunk/src/apps/mediaplayer/supplier/MediaTrackVideoSupplier.cpp
===================================================================
--- haiku/trunk/src/apps/mediaplayer/supplier/MediaTrackVideoSupplier.cpp       
2010-09-01 17:56:51 UTC (rev 38501)
+++ haiku/trunk/src/apps/mediaplayer/supplier/MediaTrackVideoSupplier.cpp       
2010-09-01 17:57:18 UTC (rev 38502)
@@ -25,14 +25,15 @@
 // constructor
 MediaTrackVideoSupplier::MediaTrackVideoSupplier(BMediaTrack* track,
                int32 trackIndex, status_t& initStatus)
-       : VideoTrackSupplier()
-       , fVideoTrack(track)
+       :
+       VideoTrackSupplier(),
+       fVideoTrack(track),
 
-       , fPerformanceTime(0)
-       , fDuration(0)
-       , fCurrentFrame(0)
+       fPerformanceTime(0),
+       fDuration(0),
+       fCurrentFrame(0),
 
-       , fTrackIndex(trackIndex)
+       fTrackIndex(trackIndex)
 {
        if (!fVideoTrack) {
                printf("MediaTrackVideoSupplier() - no video track\n");


Other related posts:

  • » [haiku-commits] r38502 - haiku/trunk/src/apps/mediaplayer/supplier - superstippi