Skip to content

Commit

Permalink
Merge branch 'jb49100' into 'master'
Browse files Browse the repository at this point in the history
[nemo-qml-plugin-contacts] Update plugins.qmltypes. Contributes to JB#49100

See merge request mer-core/nemo-qml-plugin-contacts!37
  • Loading branch information
pvuorela committed Feb 25, 2020
2 parents 48da4b6 + f29ec4c commit e985ba0
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions src/plugins.qmltypes
Expand Up @@ -8,6 +8,24 @@ import QtQuick.tooling 1.2

Module {
dependencies: ["QtQuick 2.0"]
Component {
name: "KnownContacts"
prototype: "QObject"
exports: ["org.nemomobile.contacts/KnownContacts 1.0"]
isCreatable: false
isSingleton: true
exportMetaObjectRevisions: [0]
Method {
name: "storeContact"
type: "bool"
Parameter { name: "contact"; type: "QVariantMap" }
}
Method {
name: "storeContacts"
type: "bool"
Parameter { name: "contacts"; type: "QVariantList" }
}
}
Component {
name: "SeasideDisplayLabelGroupModel"
prototype: "QAbstractListModel"
Expand Down Expand Up @@ -72,7 +90,8 @@ Module {
"NoPropertyRequired": 0,
"AccountUriRequired": 1,
"PhoneNumberRequired": 2,
"EmailAddressRequired": 4
"EmailAddressRequired": 4,
"OrganizationRequired": 8
}
}
Enum {
Expand Down Expand Up @@ -117,7 +136,9 @@ Module {
"NoteDetailsRole": 275,
"CompanyNameRole": 276,
"TitleRole": 277,
"RoleRole": 278
"RoleRole": 278,
"NameDetailsRole": 279,
"FilterMatchDataRole": 280
}
}
Property { name: "populated"; type: "bool"; isReadonly: true }
Expand Down

0 comments on commit e985ba0

Please sign in to comment.