From 042bce3f91ea234df1c636a0965890d26b175ef0 Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Sun, 22 Jul 2012 01:34:44 +0200 Subject: [PATCH] Fix some methods made private by accident --- Classes/BITUpdateManager.h | 6 ++++++ Classes/BITUpdateManagerPrivate.h | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Classes/BITUpdateManager.h b/Classes/BITUpdateManager.h index 0ac1f7cc45..2ee55ce0b9 100644 --- a/Classes/BITUpdateManager.h +++ b/Classes/BITUpdateManager.h @@ -136,6 +136,12 @@ typedef enum { // default value: HockeyUpdateCheckStartup @property (nonatomic, assign) BITUpdateSetting updateSetting; +// open update info view +- (void)showUpdateView; + +// manually start an update check +- (void)checkForUpdate; + // convenience methode to create hockey view controller - (BITUpdateViewController *)hockeyViewController:(BOOL)modal; diff --git a/Classes/BITUpdateManagerPrivate.h b/Classes/BITUpdateManagerPrivate.h index 5d6b71f9ad..e28069f771 100644 --- a/Classes/BITUpdateManagerPrivate.h +++ b/Classes/BITUpdateManagerPrivate.h @@ -66,12 +66,6 @@ - (void)startManager; -// open update info view -- (void)showUpdateView; - -// manually start an update check -- (void)checkForUpdate; - // checks for update, informs the user (error, no update found, etc) - (void)checkForUpdateShowFeedback:(BOOL)feedback;