Advertisement
Guest User

Untitled

a guest
May 14th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ##QML IMPORTS
  2. import org.nemomobile.email 0.1
  3.  
  4. EmailAccount {
  5. id: emailAccount
  6. }
  7.  
  8. ###email, password and name text entries
  9.  
  10. ##Save button
  11.  
  12. onClicked: {
  13. emailAccount.address = username.text
  14. emailAccount.password = password.text
  15. emailAccount.description = accountName.text
  16. emailAccount.preset = 2
  17. emailAccount.applyPreset()
  18. emailAccount.save()
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement