diff --git a/src/corelib/platform/android/qandroidextras.cpp b/src/corelib/platform/android/qandroidextras.cpp index aa0c3fd093b..662ba993c71 100644 --- a/src/corelib/platform/android/qandroidextras.cpp +++ b/src/corelib/platform/android/qandroidextras.cpp @@ -897,8 +897,9 @@ QJniObject QAndroidIntent::handle() const Starts the activity given by \a intent and provides the result asynchronously through the \a resultReceiver if this is non-null. - If \a resultReceiver is null, then the \c startActivity() method in the \c androidActivity() - will be called. Otherwise \c startActivityForResult() will be called. + If \a resultReceiver is null, then the \c startActivity() method of + QNativeInterface::QAndroidApplication::context() will be called. Otherwise + \c startActivityForResult() will be called. The \a receiverRequestCode is a request code unique to the \a resultReceiver, and will be returned along with the result, making it possible to use the same receiver for more than @@ -930,8 +931,9 @@ void QtAndroidPrivate::startActivity(const QJniObject &intent, Starts the activity given by \a intent and provides the result asynchronously through the \a resultReceiver if this is non-null. - If \a resultReceiver is null, then the \c startActivity() method in the \c androidActivity() - will be called. Otherwise \c startActivityForResult() will be called. + If \a resultReceiver is null, then the \c startActivity() method of + QNativeInterface::QAndroidApplication::context() will be called. Otherwise + \c startActivityForResult() will be called. The \a receiverRequestCode is a request code unique to the \a resultReceiver, and will be returned along with the result, making it possible to use the same receiver for more than @@ -967,8 +969,9 @@ void QtAndroidPrivate::startActivity(const QJniObject &intent, Starts the activity given by \a intentSender and provides the result asynchronously through the \a resultReceiver if this is non-null. - If \a resultReceiver is null, then the \c startIntentSender() method in the \c androidActivity() - will be called. Otherwise \c startIntentSenderForResult() will be called. + If \a resultReceiver is null, then the \c startIntentSender() method of + QNativeInterface::QAndroidApplication::context() will be called. Otherwise + \c startIntentSenderForResult() will be called. The \a receiverRequestCode is a request code unique to the \a resultReceiver, and will be returned along with the result, making it possible to use the same receiver for more than