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

RefreshAllViews() public method

JohnT: this might be a poorly named or obsolete message. Kept because there are some callers and I don't have time to analyze them all. Generally better to use RefreshDisplay().
public RefreshAllViews ( ) : void
return void
		public void RefreshAllViews()
		{
			CheckDisposed();

			// We don't want to clear the cache... just update the view.
			m_mediator.SendMessage("Refresh", this);
			//OnMasterRefresh(null);
		}
FwXWindow