MCRepositoryBrowser.st
changeset 761 618f0ee3896a
parent 603 ff439a3c0346
child 768 5798e82337da
--- a/MCRepositoryBrowser.st	Thu Mar 21 23:47:35 2013 +0100
+++ b/MCRepositoryBrowser.st	Fri Mar 22 00:41:14 2013 +0100
@@ -1103,7 +1103,10 @@
     entry := self selectedVersionHolder value.
     entry notNil ifTrue:[
         self withWaitCursorDo:[
-            self versionLoad: entry asMCVersion into:(targetPackage ? PackageId noProjectID)
+            |version|
+
+            version := entry asMCVersion.
+            self versionLoad: version into:(targetPackage ? version package name ? PackageId noProjectID)
         ]
     ].
 
@@ -1191,15 +1194,16 @@
 !MCRepositoryBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryBrowser.st,v 1.20 2012-09-11 21:15:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryBrowser.st,v 1.21 2013-03-21 23:41:14 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryBrowser.st,v 1.20 2012-09-11 21:15:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCRepositoryBrowser.st,v 1.21 2013-03-21 23:41:14 cg Exp $'
 !
 
 version_SVN
     ^ '§Id: MCRepositoryBrowser.st 34 2011-08-04 21:44:46Z vranyj1 §'
 ! !
 
+
 MCRepositoryBrowser initialize!