From d3fc983efd454f12d59bed60120b57b88635b60b Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 23 Aug 2010 19:42:35 +0000 Subject: [PATCH] Reverted git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@850 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- Greenshot/Forms/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index b2f7f0459..bdcef42e1 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -89,7 +89,7 @@ namespace Greenshot { LOG.Info("Firstlaunch: " + coreConfiguration.IsFirstLaunch); LOG.Info("Destinations:"); if (coreConfiguration.OutputDestinations != null) { - foreach(string destination in coreConfiguration.OutputDestinations) { + foreach(Destination destination in coreConfiguration.OutputDestinations) { LOG.Info("\t" + destination); } }