Exemple #1
0
			public TranslationTask (POEditorWidget widget, CatalogEntry entry, string description) : base (widget.poFileName,
			                                                                           description, 0, 0,
			                                                                           TaskSeverity.Error, TaskPriority.Normal, null, widget)
			{
				this.widget = widget;
				this.entry  = entry;
			}
			public FilterWorkerThread (POEditorWidget widget)
			{
				this.widget = widget;
			}
Exemple #3
0
			public Change (POEditorWidget widget, CatalogEntry entry, string oldText, string text, int index)
			{
				this.widget = widget;
				this.Entry = entry;
				this.OldText = oldText;
				this.Text  = text;
				this.Index = index;
			}
			public UpdateTaskWorkerThread (POEditorWidget widget)
			{
				this.widget = widget;
			}