- v0.04-2
This commit is contained in:
parent
5b33ad8b21
commit
4f85ff2f5a
2 changed files with 7 additions and 7 deletions
|
|
@ -507,14 +507,14 @@ void libreMediaServer::initMSEX()
|
|||
// Generates the thumbs to transmit by CITP/MSEx
|
||||
void libreMediaServer::makeThumbs()
|
||||
{
|
||||
QProcess *script = new QProcess ();
|
||||
QString s = "Creating thumbs in ";
|
||||
s.append(m_pathmedia);
|
||||
s.append(" This operation can take some time...");
|
||||
ui.textEdit->appendPlainText(s);
|
||||
QProcess *script;
|
||||
QStringList arguments;
|
||||
arguments << m_pathmedia;
|
||||
qDebug() << "Creating thumbs in " << arguments;
|
||||
QString s = "Creating thumbs in ";
|
||||
s.append(arguments.at(0));
|
||||
s.append("This operation can take some time...");
|
||||
ui.textEdit->appendPlainText(s);
|
||||
qDebug() << s.toAscii();
|
||||
script->execute("./scripts/make_thumbs.sh", arguments);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue