20 # Start-Of-Header |
20 # Start-Of-Header |
21 name = "Corba Extension Plugin" |
21 name = "Corba Extension Plugin" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
23 autoactivate = True |
24 deactivateable = True |
24 deactivateable = True |
25 version = "10.1.0" |
25 version = "10.1.1" |
26 className = "CorbaExtensionPlugin" |
26 className = "CorbaExtensionPlugin" |
27 packageName = "ExtensionCorba" |
27 packageName = "ExtensionCorba" |
28 shortDescription = "Support for the development of CORBA projects" |
28 shortDescription = "Support for the development of CORBA projects" |
29 longDescription = ( |
29 longDescription = ( |
30 "This plugin adds support for the development of CORBA related projects." |
30 "This plugin adds support for the development of CORBA related projects." |
219 """ |
219 """ |
220 from eric7.QScintilla import Lexers |
220 from eric7.QScintilla import Lexers |
221 from eric7.Utilities import ClassBrowsers |
221 from eric7.Utilities import ClassBrowsers |
222 |
222 |
223 Lexers.unregisterLexer("IDL") |
223 Lexers.unregisterLexer("IDL") |
224 ClassBrowsers.registerClassBrowser("IDL") |
224 ClassBrowsers.unregisterClassBrowser("IDL") |
225 |
225 |
226 self.__browser.deactivate() |
226 self.__browser.deactivate() |
227 |
227 |
228 self.__initialize() |
228 self.__initialize() |
229 |
229 |