AbstractLauncherApplication.st
changeset 8643 e69b9268f450
parent 8625 40edf78ff6aa
child 8680 67c4eaab32cf
equal deleted inserted replaced
8642:7c85451eed8a 8643:e69b9268f450
   902 
   902 
   903 !AbstractLauncherApplication methodsFor:'queries'!
   903 !AbstractLauncherApplication methodsFor:'queries'!
   904 
   904 
   905 bugReporterAvailable
   905 bugReporterAvailable
   906     ^ BugGUI notNil
   906     ^ BugGUI notNil
       
   907     or:[ Expecco::ExpeccoNetAPI notNil ]
   907 !
   908 !
   908 
   909 
   909 hasPDALauncher
   910 hasPDALauncher
   910     ^ PDALauncher notNil
   911     ^ PDALauncher notNil
   911 !
   912 !
  1614         box destroy
  1615         box destroy
  1615     ]
  1616     ]
  1616 !
  1617 !
  1617 
  1618 
  1618 startBugMessages
  1619 startBugMessages
  1619     "open the SUnit test runner"
  1620     "open the bug reporter"
  1620 
  1621 
  1621     self openApplication:#BugGUI
  1622     Expecco::ExpeccoNetAPI notNil ifTrue:[
       
  1623         Expecco::ExpeccoNetAPI reportCodeReview.
       
  1624         ^ self
       
  1625     ].
       
  1626 
       
  1627     BugGUI notNil ifTrue:[
       
  1628         self openApplication:#BugGUI
       
  1629     ].
  1622 
  1630 
  1623     "Modified: / 17.10.1998 / 14:38:18 / cg"
  1631     "Modified: / 17.10.1998 / 14:38:18 / cg"
  1624 !
  1632 !
  1625 
  1633 
  1626 startChangeSetBrowser
  1634 startChangeSetBrowser
  6678 ! !
  6686 ! !
  6679 
  6687 
  6680 !AbstractLauncherApplication class methodsFor:'documentation'!
  6688 !AbstractLauncherApplication class methodsFor:'documentation'!
  6681 
  6689 
  6682 version
  6690 version
  6683     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.375 2009-05-13 07:51:34 cg Exp $'
  6691     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.376 2009-06-07 10:17:23 cg Exp $'
  6684 ! !
  6692 ! !