summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
Unidiff
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/lnkproperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index ebfd4bf..28a71e9 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -161,25 +161,25 @@ void LnkProperties::setupLocations()
161 QListIterator<FileSystem> it ( fs ); 161 QListIterator<FileSystem> it ( fs );
162 QString s; 162 QString s;
163 QString homeDir = getenv("HOME"); 163 QString homeDir = getenv("HOME");
164 QString hardDiskHome; 164 QString hardDiskHome;
165 QString hardDiskPath; 165 QString hardDiskPath;
166 int index = 0; 166 int index = 0;
167 currentLocation = -1; 167 currentLocation = -1;
168 for ( ; it.current(); ++it ) { 168 for ( ; it.current(); ++it ) {
169 // we add 10k to the file size so we are sure we can also save the desktop file 169 // we add 10k to the file size so we are sure we can also save the desktop file
170 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { 170 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) {
171 if ( (*it)->isRemovable() || 171 if ( (*it)->isRemovable() ||
172 (*it)->disk() == "/dev/mtdblock1" || 172 (*it)->disk() == "/dev/mtdblock1" ||
173 (*it)->disk() == "/dev/mtdblock/1" ) { 173 (*it)->disk() == "/dev/mtdblock/1" || (*it)->disk().left(13) == "/dev/mtdblock" ) {
174 d->locationCombo->insertItem( (*it)->name(), index ); 174 d->locationCombo->insertItem( (*it)->name(), index );
175 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); 175 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) );
176 if ( lnk->file().contains( (*it)->path() ) ) { 176 if ( lnk->file().contains( (*it)->path() ) ) {
177 d->locationCombo->setCurrentItem( index ); 177 d->locationCombo->setCurrentItem( index );
178 currentLocation = index; 178 currentLocation = index;
179 } 179 }
180 index++; 180 index++;
181 } else if ( (*it)->name().contains( "Hard Disk") && 181 } else if ( (*it)->name().contains( "Hard Disk") &&
182 homeDir.contains( (*it)->path() ) && 182 homeDir.contains( (*it)->path() ) &&
183 (*it)->path().length() > hardDiskHome.length() ) { 183 (*it)->path().length() > hardDiskHome.length() ) {
184 hardDiskHome = (*it)->name(); 184 hardDiskHome = (*it)->name();
185 hardDiskPath = (*it)->path(); 185 hardDiskPath = (*it)->path();