| 116 | } |
| 117 | |
| 118 | static void appendCustomValues(QUrlQuery &query, const QVariantMap &customValues) |
| 119 | { |
| 120 | for (QVariantMap::const_iterator iter = customValues.begin(); iter != customValues.end(); ++iter) |
| 121 | { |
| 122 | query.addQueryItem(iter.key(), iter.value().toString()); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Sent screen view is called when the user changed the applications view. |
no test coverage detected