QuickLauncher: Ignore empty URLs at reading the configuration

Signed-off-by: Roman Savochenko <roman@home.home>
pull/418/head
Roman Savochenko 6 months ago
parent a99f7a16ff
commit d2412f01de

@ -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