33 """ |
33 """ |
34 Constructor |
34 Constructor |
35 |
35 |
36 @param parent reference to the parent object (QObject) |
36 @param parent reference to the parent object (QObject) |
37 """ |
37 """ |
38 super(WebIconProvider, self).__init__(parent) |
38 super().__init__(parent) |
39 |
39 |
40 self.__encoding = "iso-8859-1" |
40 self.__encoding = "iso-8859-1" |
41 self.__iconsFileName = "web_site_icons.json" |
41 self.__iconsFileName = "web_site_icons.json" |
42 self.__iconDatabasePath = "" # saving of icons disabled |
42 self.__iconDatabasePath = "" # saving of icons disabled |
43 |
43 |