This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ uint64_t int64Swap(uint64_t val) {
200200
201201 if (isPcm) {
202202 NSInteger result =
203- [stream read: (uint8_t *)& outOutputData maxLength: (cafDesc.mBytesPerPacket * (ioOutputDataByteSize / cafDesc.mBytesPerPacket ))];
203+ [stream read: (uint8_t *)outOutputData maxLength: (cafDesc.mBytesPerPacket * (ioOutputDataByteSize / cafDesc.mBytesPerPacket ))];
204204 ioNumberPackets = (result / cafDesc.mBytesPerPacket );
205205 ioOutputDataByteSize = result;
206206 return ;
Original file line number Diff line number Diff line change @@ -802,13 +802,11 @@ - (void)removeFromSuperlayer {
802802 return ;
803803 }
804804
805- CALayer * oursuper = priv->superlayer ;
806-
807805 // If our layer is visible, order all subviews out
808806 bool isVisible = false ;
809807
810808 CALayer * curLayer = self;
811- CALayer * pSuper = (CALayer *)priv->superlayer ;
809+ CALayer * superLayer = (CALayer *)priv->superlayer ;
812810 CALayer * nextSuper = curLayer->priv ->superlayer ;
813811 priv->superlayer = 0 ;
814812
@@ -832,7 +830,9 @@ - (void)removeFromSuperlayer {
832830
833831 [CATransaction _removeLayer: self ];
834832
835- pSuper->priv ->removeChild (self);
833+ superLayer->priv ->removeChild (self);
834+
835+ [superLayer setNeedsLayout ];
836836 [self release ];
837837}
838838
Original file line number Diff line number Diff line change 11# MAJOR.MINOR.BUILD.REVISION
22# BUILD = YYMM
33# REVISION = DD
4- 0.2.1612.21
4+ 0.2.1612.30
You can’t perform that action at this time.
0 commit comments