summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
Unidiff
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/lnkproperties.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index 28a71e9..bd43e21 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -118,24 +118,25 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
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
123LnkProperties::~LnkProperties() 123LnkProperties::~LnkProperties()
124{ 124{
125} 125}
126 126
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 if ( QFile::exists(lnk->file()) )
130 lnk->removeFiles(); 131 lnk->removeFiles();
131 if ( QFile::exists(lnk->file()) ) { 132 if ( QFile::exists(lnk->file()) ) {
132 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 133 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
133 } else { 134 } else {
134 reject(); 135 reject();
135 } 136 }
136 } 137 }
137} 138}
138 139
139 140
140/* 141/*
141 * remove only the link from documents, not also the file 142 * remove only the link from documents, not also the file