Commit 9e96050d authored by Dan Pascu's avatar Dan Pascu

Renamed icons for the default entries in the Test contact group

parent c146010d
......@@ -1300,10 +1300,10 @@ class ContactModel(QAbstractListModel):
file = None
icon_cache = IconCache()
group = ContactGroup('Test')
contacts = [Contact(group, 'Call Test', '3333@sip2sip.info', image=icon_cache.store(Resources.get('icons/3333@sip2sip.info.png'))),
Contact(group, 'Echo Test', '4444@sip2sip.info', image=icon_cache.store(Resources.get('icons/4444@sip2sip.info.png'))),
Contact(group, 'Audio Conference', 'test@conference.sip2sip.info', image=icon_cache.store(Resources.get('icons/conference@sip2sip.info.png'))),
Contact(group, 'VUC Conference http://vuc.me', '200901@login.zipdx.com', image=icon_cache.store(Resources.get('icons/200901@login.zipdx.com.png')))]
contacts = [Contact(group, 'Call Test', '3333@sip2sip.info', image=icon_cache.store(Resources.get('icons/call-test-icon.png'))),
Contact(group, 'Echo Test', '4444@sip2sip.info', image=icon_cache.store(Resources.get('icons/echo-test-icon.png'))),
Contact(group, 'Audio Conference', 'test@conference.sip2sip.info', image=icon_cache.store(Resources.get('icons/audio-conference-icon.png'))),
Contact(group, 'VUC Conference http://vuc.me', '200901@login.zipdx.com', image=icon_cache.store(Resources.get('icons/vuc-conference-icon.png')))]
contacts.sort(key=attrgetter('name'))
items = [group] + contacts
self.beginResetModel()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment