2177 """ |
2177 """ |
2178 if self.debugging: |
2178 if self.debugging: |
2179 self.debuggerInterface.remoteNoDebugList( |
2179 self.debuggerInterface.remoteNoDebugList( |
2180 debuggerId, self.__multiprocessNoDebugList |
2180 debuggerId, self.__multiprocessNoDebugList |
2181 ) |
2181 ) |
|
2182 |
|
2183 def getProjectEnvironmentString(self): |
|
2184 """ |
|
2185 Public method to get the string for the project environment. |
|
2186 |
|
2187 @return string for the project environment |
|
2188 @rtype str |
|
2189 """ |
|
2190 if ericApp().getObject("Project").isOpen(): |
|
2191 return self.tr("<project>") |
|
2192 else: |
|
2193 return "" |