From: <ror...@us...> - 2007-07-08 19:01:39
|
Revision: 96 http://roreditor.svn.sourceforge.net/roreditor/?rev=96&view=rev Author: rorthomas Date: 2007-07-08 12:01:38 -0700 (Sun, 08 Jul 2007) Log Message: ----------- * minor corrections Modified Paths: -------------- trunk/lib/ror/starter.py Modified: trunk/lib/ror/starter.py =================================================================== --- trunk/lib/ror/starter.py 2007-07-08 19:01:11 UTC (rev 95) +++ trunk/lib/ror/starter.py 2007-07-08 19:01:38 UTC (rev 96) @@ -117,9 +117,12 @@ f.close() def OnDepGraph(self, event=None): + dlg = wx.MessageDialog(self, "to get this working, you must install tools/pyparsing*.exe and tools/graphviz*.exe!", "Info", wx.OK | wx.ICON_INFORMATION) + dlg.ShowModal() + dlg.Destroy() import depchecker depchecker.RoRDepChecker(self.rordir, "all", "") - dlg = wx.MessageDialog(self, "If everything went fine, you should find the graph in the RoRToolkit Directory under dependencies.png!", "Info", wx.OK | wx.ICON_INFORMATION) + dlg = wx.MessageDialog(self, "If everything went fine (and you got the correct tools installed), you should find the graph in the RoRToolkit Directory under dependencies.png!", "Info", wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |