Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>2011-08-04 01:13:42 +0400
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>2011-08-04 02:03:06 +0400
commiteb3bd44b3a34da136c0f0cbd5abf02ecf00a8a6c (patch)
treef395ac3088a8b19376d6b6ac169bfadf304a4542 /main/src/addins/WindowsPlatform
parent2b2ff23e930145a945559ee17efe4a51a2279cfa (diff)
[Windows] Always indicate whether to close the current workspace.
Diffstat (limited to 'main/src/addins/WindowsPlatform')
-rw-r--r--main/src/addins/WindowsPlatform/Dialogs/OpenFileDialogHandler.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/addins/WindowsPlatform/Dialogs/OpenFileDialogHandler.cs b/main/src/addins/WindowsPlatform/Dialogs/OpenFileDialogHandler.cs
index 72159740d2..8fba6e6da1 100644
--- a/main/src/addins/WindowsPlatform/Dialogs/OpenFileDialogHandler.cs
+++ b/main/src/addins/WindowsPlatform/Dialogs/OpenFileDialogHandler.cs
@@ -63,10 +63,10 @@ namespace MonoDevelop.Platform
if (dlg.SelectedEncodingId != null)
data.Encoding = dlg.SelectedEncodingId;
- if (dlg.SelectedViewer != null) {
+ if (dlg.SelectedViewer != null)
data.SelectedViewer = dlg.SelectedViewer;
- data.CloseCurrentWorkspace = dlg.CloseCurrentWorkspace;
- }
+
+ data.CloseCurrentWorkspace = dlg.CloseCurrentWorkspace;
}
parentWindow.Present ();