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

Synchronize() public method

Called when a window syncronizes it's views with DB changes (e.g. when an undo or redo command is issued).
public Synchronize ( SyncMsg sync ) : bool
sync SyncMsg syncronization message
return bool
		public virtual bool Synchronize(SyncMsg sync)
		{
			CheckDisposed();

			if (sync == SyncMsg.ksyncStyle)
			{
				// force our stylesheet to resync (LT-7382).
				ResyncStylesheet();
				ResyncRootboxStyles();
				return true;
			}
			return false;
		}
FwXWindow