SIL.FieldWorks.XWorks.FwXWindow.OnHelpCheckForUpdates C# (CSharp) Method

OnHelpCheckForUpdates() protected method

Check if any updates to FW are available
protected OnHelpCheckForUpdates ( object args ) : bool
args object
return bool
		protected bool OnHelpCheckForUpdates(object args)
		{
#if !__MonoCS__
			var sparkle = SingletonsContainer.Item("Sparkle") as Sparkle;
			if (sparkle == null)
				MessageBox.Show("Updates do not work unless FieldWorks was installed via the installer.");
			else
				sparkle.CheckForUpdatesAtUserRequest();
#endif
			return true;
		}
FwXWindow