summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/server.cpp b/core/launcher/server.cpp
index 524e6dd..0eaebcf 100644
--- a/core/launcher/server.cpp
+++ b/core/launcher/server.cpp
@@ -390,14 +390,14 @@ void Server::systemMsg(const QCString &msg, const QByteArray &data)
390 * QtopiaDesktop relies on the major number 390 * QtopiaDesktop relies on the major number
391 * to start with 1. 391 * to start with 1.
392 * we need to fake at least 1.4 to be able 392 * we need to fake at least 1.4 to be able
393 * to sync with QtopiaDesktop1.6 393 * to sync with QtopiaDesktop1.6
394 */ 394 */
395 QCopEnvelope e( "QPE/Desktop", "versionInfo(QString,QString)" ); 395 QCopEnvelope e( "QPE/Desktop", "versionInfo(QString,QString)" );
396 /* ### FIXME Architecture ### */ 396 QString opiename = "Opie";
397 e << QString::fromLatin1("1.7") << "Uncustomized Device"; 397 e << QString(QPE_VERSION) << opiename;
398 } else if ( msg == "sendCardInfo()" ) { 398 } else if ( msg == "sendCardInfo()" ) {
399#ifndef QT_NO_COP 399#ifndef QT_NO_COP
400 QCopEnvelope e( "QPE/Desktop", "cardInfo(QString)" ); 400 QCopEnvelope e( "QPE/Desktop", "cardInfo(QString)" );
401#endif 401#endif
402 storage->update(); 402 storage->update();
403 const QList<FileSystem> &fs = storage->fileSystems(); 403 const QList<FileSystem> &fs = storage->fileSystems();