Index: src/Common/DelftTools.Controls.Swf/ProgressBarDialog.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Controls.Swf/ProgressBarDialog.cs (.../ProgressBarDialog.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls.Swf/ProgressBarDialog.cs (.../ProgressBarDialog.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -14,13 +14,19 @@ InitializeComponent(); Label = label; } - + public string Label { - get { return label1.Text; } - set { label1.Text = value; } + get + { + return label1.Text; + } + set + { + label1.Text = value; + } } - + public static void PerformTask(string label, Action action) { if (!Environment.UserInteractive) @@ -66,7 +72,9 @@ } if (taskException != null) + { throw taskException; //we loose stacktrace..but ok + } } } -} +} \ No newline at end of file