Skip to content

Commit 3f22ffa

Browse files
committed
Correct access level of class convenience functions [swift]
1 parent 10275fb commit 3f22ffa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/Swift/MarqueeLabel.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
363363
- SeeAlso: controllerViewDidAppear:
364364
- SeeAlso: controllerViewWillAppear:
365365
*/
366-
class func restartLabelsOfController(_ controller: UIViewController) {
366+
open class func restartLabelsOfController(_ controller: UIViewController) {
367367
MarqueeLabel.notifyController(controller, message: .Restart)
368368
}
369369

@@ -376,7 +376,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
376376
- SeeAlso: restartLabel
377377
- SeeAlso: controllerViewDidAppear
378378
*/
379-
class func controllerViewWillAppear(_ controller: UIViewController) {
379+
open class func controllerViewWillAppear(_ controller: UIViewController) {
380380
MarqueeLabel.restartLabelsOfController(controller)
381381
}
382382

@@ -389,7 +389,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
389389
- SeeAlso: restartLabel
390390
- SeeAlso: controllerViewWillAppear
391391
*/
392-
class func controllerViewDidAppear(_ controller: UIViewController) {
392+
open class func controllerViewDidAppear(_ controller: UIViewController) {
393393
MarqueeLabel.restartLabelsOfController(controller)
394394
}
395395

@@ -401,7 +401,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
401401
- Parameter controller: The view controller for which all `MarqueeLabel` instances should be labelized.
402402
- SeeAlso: labelize
403403
*/
404-
class func controllerLabelsLabelize(_ controller: UIViewController) {
404+
open class func controllerLabelsLabelize(_ controller: UIViewController) {
405405
MarqueeLabel.notifyController(controller, message: .Labelize)
406406
}
407407

@@ -413,7 +413,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
413413
- Parameter controller: The view controller for which all `MarqueeLabel` instances should be de-labelized.
414414
- SeeAlso: labelize
415415
*/
416-
class func controllerLabelsAnimate(_ controller: UIViewController) {
416+
open class func controllerLabelsAnimate(_ controller: UIViewController) {
417417
MarqueeLabel.notifyController(controller, message: .Animate)
418418
}
419419

0 commit comments

Comments
 (0)