author | llornkcor <llornkcor> | 2002-07-02 12:12:16 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-02 12:12:16 (UTC) |
commit | 470eee047583c9bb12c2c9014c7e9c86de71cef9 (patch) (side-by-side diff) | |
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 @@ -128,8 +128,10 @@ void LnkProperties::unlinkLnk() { if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { if ( QFile::exists(lnk->file()) ) lnk->removeFiles(); + else + QMessageBox::warning( this, tr("Delete"), tr("File does not exist.") ); if ( QFile::exists(lnk->file()) ) { QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); } else { reject(); |