qtmobility/src/contacts/qcontactaction.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
--- a/qtmobility/src/contacts/qcontactaction.cpp	Fri Apr 16 15:51:22 2010 +0300
+++ b/qtmobility/src/contacts/qcontactaction.cpp	Mon May 03 13:18:40 2010 +0300
@@ -57,6 +57,7 @@
   \brief The QContactAction class provides an interface for performing an
   action on a QContact or QContactDetail.
   \ingroup contacts-main
+  \ingroup contacts-actions
 
   An action is anything that can be performed on a contact, or a detail of a contact.  An example
   of an action might be "Send Email" or "Dial" or "Plot Navigation Route".  One action may be
@@ -122,7 +123,7 @@
     QList<QContactDetail> ret;
     QList<QContactDetail> details = contact.details();
     for (int j=0; j < details.count(); j++) {
-        if (supportsDetail(details.at(j)))
+        if (isDetailSupported(details.at(j), contact))
             ret.append(details.at(j));
     }
     return ret;