4493 """ |
4493 """ |
4494 Public slot to open some files. |
4494 Public slot to open some files. |
4495 |
4495 |
4496 @param prog name of file to be opened (string) |
4496 @param prog name of file to be opened (string) |
4497 """ |
4497 """ |
4498 prog = Utilities.normabspath(prog) |
4498 prog = os.path.abspath(prog) |
4499 # Open up the new files. |
4499 # Open up the new files. |
4500 self.openSourceFile(prog) |
4500 self.openSourceFile(prog) |
4501 |
4501 |
4502 def checkDirty(self, editor, autosave=False): |
4502 def checkDirty(self, editor, autosave=False): |
4503 """ |
4503 """ |