1553 self.__recentApplications.remove(applStr) |
1553 self.__recentApplications.remove(applStr) |
1554 self.__recentApplications.insert(0, applStr) |
1554 self.__recentApplications.insert(0, applStr) |
1555 |
1555 |
1556 maxRecentApps = self.__plugin.getPreferences("RecentNumberApps") |
1556 maxRecentApps = self.__plugin.getPreferences("RecentNumberApps") |
1557 if len(self.__recentApplications) > maxRecentApps: |
1557 if len(self.__recentApplications) > maxRecentApps: |
1558 self.__recentApplications = self.recent[:maxRecentApps] |
1558 self.__recentApplications = \ |
|
1559 self.__recentApplications[:maxRecentApps] |
1559 self.__saveRecentApplications() |
1560 self.__saveRecentApplications() |
1560 |
1561 |
1561 def getProjectPath(self): |
1562 def getProjectPath(self): |
1562 """ |
1563 """ |
1563 Public method to get the path of the eric6 project. |
1564 Public method to get the path of the eric6 project. |