2018-07-12 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up SQL quieries in 'lib/' ensure UTF-8 compatibility.
This commit is contained in:
Fred Gleason
2018-07-12 13:47:20 -04:00
parent bc2ada9b22
commit 363dbb7878
67 changed files with 1617 additions and 2040 deletions

View File

@@ -44,9 +44,7 @@ QString RDUrl::smbShare() const
if((offset=path().right(path().length()-1).find("/"))<0) {
offset=path().length();
}
return QString().sprintf("//%s%s",
(const char *)host(),
(const char *)path().left(offset+1));
return QString("//")+host()+path().left(offset+1);
}