mercurial/HGSourceCodeManagementSettingsAppl.st
changeset 49 ffb879bfafe7
parent 46 d5a192b11a1a
child 54 66045198bfbc
--- a/mercurial/HGSourceCodeManagementSettingsAppl.st	Wed Nov 14 19:44:56 2012 +0000
+++ b/mercurial/HGSourceCodeManagementSettingsAppl.st	Wed Nov 14 19:46:42 2012 +0000
@@ -188,15 +188,15 @@
 !HGSourceCodeManagementSettingsAppl methodsFor:'protocol'!
 
 basicReadSettings
-    self shownInBrowserMenusHolder value:GitSourceCodeManager2 shownInBrowserMenus.
+    self shownInBrowserMenusHolder value:HGSourceCodeManager shownInBrowserMenus.
 
-    "Modified: / 06-10-2012 / 17:18:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 14-11-2012 / 19:22:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 basicSaveSettings
-    GitSourceCodeManager2 shownInBrowserMenus:self shownInBrowserMenusHolder value
+    HGSourceCodeManager shownInBrowserMenus:self shownInBrowserMenusHolder value
 
-    "Modified: / 06-10-2012 / 17:18:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 14-11-2012 / 19:22:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 helpFilename
@@ -211,12 +211,12 @@
 
 hasUnsavedChanges
 
-    (GitSourceCodeManager shownInBrowserMenus ~= self shownInBrowserMenusHolder value)
+    (HGSourceCodeManager shownInBrowserMenus ~= self shownInBrowserMenusHolder value)
         ifTrue:[^ true].
 
     ^ false
 
-    "Modified: / 06-10-2012 / 17:17:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 14-11-2012 / 19:23:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !HGSourceCodeManagementSettingsAppl class methodsFor:'documentation'!