Hi,
We appear to have the following setup in several files of qt-mobility.
#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
dirCandidates << QLatin1String("/home/user/MyDocs");
#endif
dirCandidates << QDir::home().filePath("Documents");
dirCandidates << QDir::home().filePath("My Documents");
dirCandidates << QDir::homePath();
dirCandidates << QDir::currentPath();
dirCandidates << QDir::tempPath();
foreach (const QString &path, dirCandidates) {
QDir dir(path);
if (dir.exists() && QFileInfo(path).isWritable())
return dir;
}
audiocapture/audiocapturesession.cpp
gstreamer/mediacapture/qgstreamerrecordercontrol.cpp
gstreamer/camerabin/camerabinsession.cpp
Well, the "Documents" exists in Meego, but what should be added in the
list of shown target paths for av capture. "Videos" at least, I assume,
but "Music" or else ? Now that we have Q_WS_MEEGO, we could use it to
add more specific paths here, right ?
regards,
-Teemu
_______________________________________________
MeeGo-dev mailing list
[email protected]
http://lists.meego.com/listinfo/meego-dev