changeset 31:552a49635124

Version 0.4.7. Small fix in mru list.
author Jari Korhonen <jtkorhonen@gmail.com>
date Mon, 14 Jun 2010 22:04:52 +0300
parents 45bfb8dc1faf
children 4f307720272f
files mainwindow.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mainwindow.cpp	Mon Jun 14 21:55:17 2010 +0300
+++ b/mainwindow.cpp	Mon Jun 14 22:04:52 2010 +0300
@@ -1297,7 +1297,7 @@
         tmp.sprintf("remoterepomrupath%d", i);
         remoteRepoMruList[i] = settings.value(tmp, "").toString();
 
-        tmp.sprintf("workfoldermru%d", i);
+        tmp.sprintf("workfoldermrupath%d", i);
         workFolderMruList[i] = settings.value(tmp, "").toString();
     }
 
@@ -1328,7 +1328,7 @@
         tmp.sprintf("remoterepomrupath%d", i);
         settings.setValue(tmp, remoteRepoMruList[i]);
 
-        tmp.sprintf("workfoldermru%d", i);
+        tmp.sprintf("workfoldermrupath%d", i);
         settings.setValue(tmp, workFolderMruList[i]);
     }