Fix in AbstractLauncherApplication>>startChangeSetBrowser: use preferred changeset browser
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 05 Mar 2015 08:32:59 +0100
changeset 15506 af054eb73ccf
parent 15505 12c4034b9d82
child 15507 fe66ebdf481d
Fix in AbstractLauncherApplication>>startChangeSetBrowser: use preferred changeset browser i.e., respect user preferences
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Wed Mar 04 19:34:43 2015 +0100
+++ b/AbstractLauncherApplication.st	Thu Mar 05 08:32:59 2015 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1997 by eXept Software AG
               All Rights Reserved
@@ -2045,9 +2047,10 @@
 startChangeSetBrowser
     "open a change Set Browser"
 
-    ChangeSetBrowser open
-
-    "Created: / 5.11.2001 / 18:04:05 / cg"
+    ^ UserPreferences current changesBrowserClass open
+
+    "Created: / 05-11-2001 / 18:04:05 / cg"
+    "Modified: / 05-03-2015 / 06:57:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 startChangesBrowser
@@ -7077,14 +7080,14 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.475 2015-03-02 12:15:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.476 2015-03-05 07:32:59 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.475 2015-03-02 12:15:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.476 2015-03-05 07:32:59 vrany Exp $'
 !
 
 version_SVN
-    ^ '$Id: AbstractLauncherApplication.st,v 1.475 2015-03-02 12:15:20 cg Exp $'
+    ^ '$Id: AbstractLauncherApplication.st,v 1.476 2015-03-05 07:32:59 vrany Exp $'
 ! !