86 """ |
86 """ |
87 Public method to get the title of the thumbnail. |
87 Public method to get the title of the thumbnail. |
88 |
88 |
89 @return title of the thumbnail (string) |
89 @return title of the thumbnail (string) |
90 """ |
90 """ |
91 if self.__title: |
91 title = self.__title if self.__title else self.__url.host() |
92 title = self.__title |
|
93 else: |
|
94 title = self.__url.host() |
|
95 if not title: |
92 if not title: |
96 title = self.__url.toString() |
93 title = self.__url.toString() |
97 return title |
94 return title |
98 |
95 |
99 def start(self): |
96 def start(self): |