QScintilla/Editor.py

changeset 5894
0d4431926611
parent 5891
2f8349f872ee
child 5897
ae17b1ae12bb
--- a/QScintilla/Editor.py	Fri Oct 06 18:52:20 2017 +0200
+++ b/QScintilla/Editor.py	Fri Oct 06 20:09:16 2017 +0200
@@ -127,6 +127,8 @@
     AttributeProtectedID = 8
     AttributePrivateID = 9
     EnumID = 10
+    KeywordsID = 11
+    ModuleID = 12
     
     FromDocumentID = 99
     
@@ -520,6 +522,10 @@
                            UI.PixmapCache.getPixmap("attribute_private.png"))
         self.registerImage(self.EnumID,
                            UI.PixmapCache.getPixmap("enum.png"))
+        self.registerImage(self.KeywordsID,
+                           UI.PixmapCache.getPixmap("keywords.png"))
+        self.registerImage(self.ModuleID,
+                           UI.PixmapCache.getPixmap("module.png"))
         
         self.registerImage(self.FromDocumentID,
                            UI.PixmapCache.getPixmap("editor.png"))

eric ide

mercurial