summaryrefslogtreecommitdiffstats
path: root/components/package
diff options
context:
space:
mode:
Diffstat (limited to 'components/package')
-rw-r--r--components/package/contents/ui/FocusComposer.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/package/contents/ui/FocusComposer.qml b/components/package/contents/ui/FocusComposer.qml
index 51d1cc0d..07fb08b6 100644
--- a/components/package/contents/ui/FocusComposer.qml
+++ b/components/package/contents/ui/FocusComposer.qml
@@ -96,9 +96,9 @@ Controls2.Popup {
96 mailcontext.to = text; 96 mailcontext.to = text;
97 } 97 }
98 98
99 model: composer.recepientAutocompletionModel 99 model: composer.recipientCompleter.model
100 onSearchTermChanged: { 100 onSearchTermChanged: {
101 composer.recepientSearchString = searchTerm 101 composer.recipientCompleter.searchString = searchTerm
102 } 102 }
103 } 103 }
104 104
@@ -122,9 +122,9 @@ Controls2.Popup {
122 mailcontext.cc = text; 122 mailcontext.cc = text;
123 } 123 }
124 124
125 model: composer.recepientAutocompletionModel 125 model: composer.recipientCompleter.model
126 onSearchTermChanged: { 126 onSearchTermChanged: {
127 composer.recepientSearchString = searchTerm 127 composer.recipientCompleter.searchString = searchTerm
128 } 128 }
129 } 129 }
130 130
@@ -147,9 +147,9 @@ Controls2.Popup {
147 mailcontext.bcc = text; 147 mailcontext.bcc = text;
148 } 148 }
149 149
150 model: composer.recepientAutocompletionModel 150 model: composer.recipientCompleter.model
151 onSearchTermChanged: { 151 onSearchTermChanged: {
152 composer.recepientSearchString = searchTerm 152 composer.recipientCompleter.searchString = searchTerm
153 } 153 }
154 } 154 }
155 155
@@ -161,13 +161,13 @@ Controls2.Popup {
161 161
162 Controls2.ComboBox { 162 Controls2.ComboBox {
163 id: identityCombo 163 id: identityCombo
164 model: composer.identityModel 164 model: composer.identitySelector.model
165 textRole: "displayName" 165 textRole: "displayName"
166 166
167 Layout.fillWidth: true 167 Layout.fillWidth: true
168 168
169 onCurrentIndexChanged: { 169 onCurrentIndexChanged: {
170 composer.currentIdentityIndex = currentIndex 170 composer.identitySelector.currentIndex = currentIndex
171 } 171 }
172 } 172 }
173 173