267 """ |
267 """ |
268 Public method to compare two lists of text. |
268 Public method to compare two lists of text. |
269 |
269 |
270 @param lines1 text to compare against (string or list of strings) |
270 @param lines1 text to compare against (string or list of strings) |
271 @param lines2 text to compare (string or list of strings) |
271 @param lines2 text to compare (string or list of strings) |
272 @keyparam name1 name to be shown for the first text (string) |
272 @param name1 name to be shown for the first text (string) |
273 @keyparam name2 name to be shown for the second text (string) |
273 @param name2 name to be shown for the second text (string) |
274 """ |
274 """ |
275 if name1 == "" or name2 == "": |
275 if name1 == "" or name2 == "": |
276 self.filesGroup.hide() |
276 self.filesGroup.hide() |
277 else: |
277 else: |
278 self.file1Picker.setText(name1) |
278 self.file1Picker.setText(name1) |