author | llornkcor <llornkcor> | 2002-07-02 12:12:16 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-02 12:12:16 (UTC) |
commit | 470eee047583c9bb12c2c9014c7e9c86de71cef9 (patch) (unidiff) | |
tree | 31548a1d31946ea33e27935f70ed04f6de99f06e | |
parent | 2ffc9e4a46ec40075e6ee55e4583120e6964168d (diff) | |
download | opie-470eee047583c9bb12c2c9014c7e9c86de71cef9.zip opie-470eee047583c9bb12c2c9014c7e9c86de71cef9.tar.gz opie-470eee047583c9bb12c2c9014c7e9c86de71cef9.tar.bz2 |
added user message for non existing file
-rw-r--r-- | library/lnkproperties.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index bd43e21..e8baca6 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp | |||
@@ -100,64 +100,66 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
100 | d->locationCombo->hide(); | 100 | d->locationCombo->hide(); |
101 | 101 | ||
102 | // Can't edit categories, since the app .desktop files are global, | 102 | // Can't edit categories, since the app .desktop files are global, |
103 | // possibly read-only. | 103 | // possibly read-only. |
104 | d->categoryEdit->hide(); | 104 | d->categoryEdit->hide(); |
105 | 105 | ||
106 | d->docname->setReadOnly( TRUE ); | 106 | d->docname->setReadOnly( TRUE ); |
107 | 107 | ||
108 | if ( l->property("CanFastload") == "0" ) | 108 | if ( l->property("CanFastload") == "0" ) |
109 | d->preload->hide(); | 109 | d->preload->hide(); |
110 | 110 | ||
111 | Config cfg("Launcher"); | 111 | Config cfg("Launcher"); |
112 | cfg.setGroup("Preload"); | 112 | cfg.setGroup("Preload"); |
113 | QStringList apps = cfg.readListEntry("Apps",','); | 113 | QStringList apps = cfg.readListEntry("Apps",','); |
114 | d->preload->setChecked( apps.contains(l->exec()) ); | 114 | d->preload->setChecked( apps.contains(l->exec()) ); |
115 | if ( Global::isBuiltinCommand(lnk->exec()) ) | 115 | if ( Global::isBuiltinCommand(lnk->exec()) ) |
116 | d->preload->hide(); // builtins are always fast | 116 | d->preload->hide(); // builtins are always fast |
117 | 117 | ||
118 | currentLocation = 0; // apps not movable (yet) | 118 | currentLocation = 0; // apps not movable (yet) |
119 | } | 119 | } |
120 | setCaption( l->file()); | 120 | setCaption( l->file()); |
121 | } | 121 | } |
122 | 122 | ||
123 | LnkProperties::~LnkProperties() | 123 | LnkProperties::~LnkProperties() |
124 | { | 124 | { |
125 | } | 125 | } |
126 | 126 | ||
127 | void LnkProperties::unlinkLnk() | 127 | void LnkProperties::unlinkLnk() |
128 | { | 128 | { |
129 | if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { | 129 | if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { |
130 | if ( QFile::exists(lnk->file()) ) | 130 | if ( QFile::exists(lnk->file()) ) |
131 | lnk->removeFiles(); | 131 | lnk->removeFiles(); |
132 | else | ||
133 | QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") ); | ||
132 | if ( QFile::exists(lnk->file()) ) { | 134 | if ( QFile::exists(lnk->file()) ) { |
133 | QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); | 135 | QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); |
134 | } else { | 136 | } else { |
135 | reject(); | 137 | reject(); |
136 | } | 138 | } |
137 | } | 139 | } |
138 | } | 140 | } |
139 | 141 | ||
140 | 142 | ||
141 | /* | 143 | /* |
142 | * remove only the link from documents, not also the file | 144 | * remove only the link from documents, not also the file |
143 | */ | 145 | */ |
144 | void LnkProperties::unlinkIcon() | 146 | void LnkProperties::unlinkIcon() |
145 | { | 147 | { |
146 | if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { | 148 | if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) { |
147 | lnk->removeLinkFile(); | 149 | lnk->removeLinkFile(); |
148 | if ( QFile::exists(lnk->linkFile()) ) { | 150 | if ( QFile::exists(lnk->linkFile()) ) { |
149 | QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); | 151 | QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") ); |
150 | } else { | 152 | } else { |
151 | reject(); | 153 | reject(); |
152 | } | 154 | } |
153 | } | 155 | } |
154 | } | 156 | } |
155 | 157 | ||
156 | void LnkProperties::setupLocations() | 158 | void LnkProperties::setupLocations() |
157 | { | 159 | { |
158 | QFileInfo fi( lnk->file() ); | 160 | QFileInfo fi( lnk->file() ); |
159 | fileSize = fi.size(); | 161 | fileSize = fi.size(); |
160 | StorageInfo storage; | 162 | StorageInfo storage; |
161 | const QList<FileSystem> &fs = storage.fileSystems(); | 163 | const QList<FileSystem> &fs = storage.fileSystems(); |
162 | QListIterator<FileSystem> it ( fs ); | 164 | QListIterator<FileSystem> it ( fs ); |
163 | QString s; | 165 | QString s; |