36 (list of string) |
36 (list of string) |
37 @param fixCodes list of codes to be fixed as a comma separated |
37 @param fixCodes list of codes to be fixed as a comma separated |
38 string (string) |
38 string (string) |
39 @param inPlace flag indicating to modify the file in place (boolean) |
39 @param inPlace flag indicating to modify the file in place (boolean) |
40 """ |
40 """ |
41 QObject.__init__(self) |
41 super().__init__() |
42 |
42 |
43 self.__project = project |
43 self.__project = project |
44 self.__filename = filename |
44 self.__filename = filename |
45 self.__origName = "" |
45 self.__origName = "" |
46 self.__source = sourceLines[:] # save a copy |
46 self.__source = sourceLines[:] # save a copy |