108 self.__cancelSearch = False |
108 self.__cancelSearch = False |
109 self.__lastFileItem = None |
109 self.__lastFileItem = None |
110 self.__populating = False |
110 self.__populating = False |
111 |
111 |
112 self.setContextMenuPolicy(Qt.CustomContextMenu) |
112 self.setContextMenuPolicy(Qt.CustomContextMenu) |
113 self.connect(self, SIGNAL("customContextMenuRequested(const QPoint &)"), |
113 self.customContextMenuRequested.connect(self.__contextMenuRequested) |
114 self.__contextMenuRequested) |
|
115 |
114 |
116 def __createItem(self, file, line, text, start, end, replTxt = ""): |
115 def __createItem(self, file, line, text, start, end, replTxt = ""): |
117 """ |
116 """ |
118 Private method to create an entry in the file list. |
117 Private method to create an entry in the file list. |
119 |
118 |