This class handles importing of Scripture, back translations, and notes.
Note: this class runs on a background thread. It can't call any UI methods directly!
Inheritance: IFWDisposable
Example #1
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		///
		/// </summary>
		/// <param name="disposing"></param>
		/// ------------------------------------------------------------------------------------
		protected virtual void Dispose(bool disposing)
		{
			System.Diagnostics.Debug.WriteLineIf(!disposing, "****** Missing Dispose() call for " + GetType().Name + ". ****** ");
			if (disposing)
			{
				if (m_ctrl != null)
					m_ctrl.Dispose();
			}

			m_ctrl = null;
			m_progressDialog = null;
			m_importer = null;

			m_fDisposed = true;
		}
Example #2
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		///
		/// </summary>
		/// <param name="disposing"></param>
		/// ------------------------------------------------------------------------------------
		protected virtual void Dispose(bool disposing)
		{
			if (disposing)
			{
				if (m_ctrl != null)
					m_ctrl.Dispose();
			}

			m_ctrl = null;
			m_progressDialog = null;
			m_importer = null;

			m_fDisposed = true;
		}