| 73 | |
| 74 | #if KDEVELOP_SINGLE_APP |
| 75 | QString serializeOpenFilesMessage(const QVector<UrlInfo> &infos) |
| 76 | { |
| 77 | QByteArray message; |
| 78 | QDataStream stream(&message, QIODevice::WriteOnly); |
| 79 | stream << QByteArrayLiteral("open"); |
| 80 | stream << infos; |
| 81 | return QString::fromLatin1(message.toHex()); |
| 82 | } |
| 83 | #endif |
| 84 | |
| 85 | void openFiles(const QVector<UrlInfo>& infos) |