eric6/ViewManager/ViewManager.py

changeset 7849
70e464748aaa
parent 7836
2f0d208b8137
child 7850
e64b178499da
child 7923
91e843545d9a
equal deleted inserted replaced
7848:97e9b5cc51dc 7849:70e464748aaa
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 """

eric ide

mercurial