summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
Unidiff
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index 28a71e9..bd43e21 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -127,12 +127,13 @@ LnkProperties::~LnkProperties()
127void LnkProperties::unlinkLnk() 127void LnkProperties::unlinkLnk()
128{ 128{
129 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { 129 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) {
130 lnk->removeFiles(); 130 if ( QFile::exists(lnk->file()) )
131 if ( QFile::exists(lnk->file()) ) { 131 lnk->removeFiles();
132 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 132 if ( QFile::exists(lnk->file()) ) {
133 } else { 133 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
134 reject(); 134 } else {
135 } 135 reject();
136 }
136 } 137 }
137} 138}
138 139