author | llornkcor <llornkcor> | 2005-03-20 05:33:24 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2005-03-20 05:33:24 (UTC) |
commit | d5451e7abbfa3c3d14202311abccac8781736dae (patch) (unidiff) | |
tree | 15f4a9c23c05edec52af01283fbfb1b9faac34b0 /libopie2 | |
parent | 76ec755d83f3143373337de84e3740915adfdc02 (diff) | |
download | opie-d5451e7abbfa3c3d14202311abccac8781736dae.zip opie-d5451e7abbfa3c3d14202311abccac8781736dae.tar.gz opie-d5451e7abbfa3c3d14202311abccac8781736dae.tar.bz2 |
add sd path for familiar
-rw-r--r-- | libopie2/opiecore/ostorageinfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiecore/ostorageinfo.cpp b/libopie2/opiecore/ostorageinfo.cpp index 6c7c138..6a3646e 100644 --- a/libopie2/opiecore/ostorageinfo.cpp +++ b/libopie2/opiecore/ostorageinfo.cpp | |||
@@ -60,9 +60,10 @@ QString OStorageInfo::sdPath()const | |||
60 | QString r = ""; | 60 | QString r = ""; |
61 | 61 | ||
62 | for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) | 62 | for (QListIterator<FileSystem> i( fileSystems() ); i.current(); ++i) |
63 | { | 63 | { |
64 | if ( (*i)->disk().left( 9 ) == "/dev/mmcd" ) | 64 | if ( (*i)->disk().left( 9 ) == "/dev/mmcd" || |
65 | (*i)->disk().left( 14 ) == "/dev/mmc/part1" ) | ||
65 | { | 66 | { |
66 | r = (*i)->path(); | 67 | r = (*i)->path(); |
67 | break; | 68 | break; |
68 | } | 69 | } |