CmisSync.SetupSubTutorialController.ReleaseDesignerOutlets C# (CSharp) Method

ReleaseDesignerOutlets() private method

private ReleaseDesignerOutlets ( ) : void
return void
		void ReleaseDesignerOutlets ()
		{
			if (ContinueButton != null) {
				ContinueButton.Dispose ();
				ContinueButton = null;
			}

			if (TutorialText != null) {
				TutorialText.Dispose ();
				TutorialText = null;
			}

			if (TutorialView != null) {
				TutorialView.Dispose ();
				TutorialView = null;
			}
		}
	}