QuickLauncher: Ignore empty URLs at reading the configuration

Signed-off-by: Roman Savochenko <roman@home.home>
(cherry picked from commit d2412f01de)
pull/478/head
Roman Savochenko 1 year ago committed by Michele Calgaro
parent 196fabb203
commit 06606d2ade
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -856,7 +856,7 @@ void QuickLauncher::loadConfig()
int n = 0; int n = 0;
while (iter != urls.end()) { while (iter != urls.end()) {
TQString url = *iter; TQString url = *iter;
addApp(url, n, false); if(!url.isEmpty()) addApp(url, n, false);
++iter; ++iter;
++n; ++n;
} }

Loading…
Cancel
Save