4189 def projectOpened(self): |
4189 def projectOpened(self): |
4190 """ |
4190 """ |
4191 Public slot to handle the projectOpened signal. |
4191 Public slot to handle the projectOpened signal. |
4192 """ |
4192 """ |
4193 for editor in self.editors: |
4193 for editor in self.editors: |
4194 editor.setSpellingForProject() |
4194 editor.projectOpened() |
4195 |
4195 |
|
4196 def projectClosed(self): |
|
4197 """ |
|
4198 Public slot to handle the projectClosed signal. |
|
4199 """ |
|
4200 for editor in self.editors: |
|
4201 editor.projectClosed() |
|
4202 |
4196 def projectFileRenamed(self, oldfn, newfn): |
4203 def projectFileRenamed(self, oldfn, newfn): |
4197 """ |
4204 """ |
4198 Public slot to handle the projectFileRenamed signal. |
4205 Public slot to handle the projectFileRenamed signal. |
4199 |
4206 |
4200 @param oldfn old filename of the file (string) |
4207 @param oldfn old filename of the file (string) |