1207 |
1207 |
1208 def __about(self): |
1208 def __about(self): |
1209 """ |
1209 """ |
1210 Private slot to show a little About message. |
1210 Private slot to show a little About message. |
1211 """ |
1211 """ |
1212 QMessageBox.about(self, self.trUtf8("About eric5 Icon Editor"), |
1212 E5MessageBox.about(self, self.trUtf8("About eric5 Icon Editor"), |
1213 self.trUtf8("The eric5 Icon Editor is a simple editor component" |
1213 self.trUtf8("The eric5 Icon Editor is a simple editor component" |
1214 " to perform icon drawing tasks.")) |
1214 " to perform icon drawing tasks.")) |
1215 |
1215 |
1216 def __aboutQt(self): |
1216 def __aboutQt(self): |
1217 """ |
1217 """ |
1218 Private slot to handle the About Qt dialog. |
1218 Private slot to handle the About Qt dialog. |
1219 """ |
1219 """ |
1220 QMessageBox.aboutQt(self, "eric5 Icon Editor") |
1220 E5MessageBox.aboutQt(self, "eric5 Icon Editor") |
1221 |
1221 |
1222 def __whatsThis(self): |
1222 def __whatsThis(self): |
1223 """ |
1223 """ |
1224 Private slot called in to enter Whats This mode. |
1224 Private slot called in to enter Whats This mode. |
1225 """ |
1225 """ |