Code cleanup and reformatting.

This commit is contained in:
2018-07-31 00:14:45 +01:00
parent 978ea811a0
commit ebde6d67e1
5 changed files with 758 additions and 772 deletions

View File

@@ -28,9 +28,10 @@
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
using System;
using Eto;
using Eto.Forms;
using Eto.Drawing;
namespace CICMMetadataEditor.Desktop
{
@@ -39,7 +40,7 @@ namespace CICMMetadataEditor.Desktop
[STAThread]
static void Main(string[] args)
{
new Application(Eto.Platform.Detect).Run(new dlgMetadata());
new Application(Platform.Detect).Run(new dlgMetadata());
}
}
}