~phablet-team/telephony-service/rtm-15.04

« back to all changes in this revision

Viewing changes to DetailViewContact/ContactDetailsSection.qml

  • Committer: Gustavo Pichorim Boiko
  • Date: 2013-03-11 23:05:20 UTC
  • mto: This revision was merged to the branch mainline in revision 610.
  • Revision ID: gustavo.boiko@canonical.com-20130311230520-rsfjr7jala0pqwr8
Rename the QML plugin from TelephonyApp to Ubuntu.PhoneApp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 */
18
18
 
19
19
import QtQuick 2.0
20
 
import TelephonyApp 0.1
 
20
import Ubuntu.PhoneApp 0.1
21
21
import "../Widgets" as LocalWidgets
22
22
import Ubuntu.Components 0.1
23
23
import Ubuntu.Components.ListItems 0.1 as ListItem
85
85
                opacity: editable ? 1.0 : 0.0
86
86
 
87
87
                onLoaded: {
88
 
                    item.detail = Qt.createQmlObject("import TelephonyApp 0.1; " + detailTypeInfo.newItemType + "{}", newItem);
 
88
                    item.detail = Qt.createQmlObject("import Ubuntu.PhoneApp 0.1; " + detailTypeInfo.newItemType + "{}", newItem);
89
89
                    if (detailTypeInfo.subTypes.length > 0) DetailUtils.setDetailSubType(item.detail, detailTypeInfo.subTypes[0]);
90
90
                    item.focus = true;
91
91
                    item.focusRequested();