-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 | |||
@@ -108,48 +108,50 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
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 | ||