Fixed file name in window title changing when exporting an XML file. Removed redundant code.

This commit is contained in:
rmcardle
2011-12-06 23:05:42 -06:00
parent e339fb1390
commit 91262db838
2 changed files with 2 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
Fixed issue #66 - Fresh Install Fails to Create Config
Fixed issue #67 - Connection file gets erased
Disabled automatic updates in the portable edition
Fixed file name in window title changing when exporting an XML file.
Updated PuTTY to version 0.61
Binaries are now digitally signed

View File

@@ -157,18 +157,12 @@ Namespace Config
SaveToVRE()
Case Format.vRDCSV
SaveTovRDCSV()
Case Format.mRXML Or Format.None
SaveToXML()
If My.Settings.EncryptCompleteConnectionsFile Then
EncryptCompleteFile()
End If
SetMainFormText(_ConnectionFileName)
Case Else
SaveToXML()
If My.Settings.EncryptCompleteConnectionsFile Then
EncryptCompleteFile()
End If
SetMainFormText(_ConnectionFileName)
If Not _Export Then SetMainFormText(_ConnectionFileName)
End Select
End Sub
#End Region