mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 17:11:15 +02:00
2025-04-26 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compiler warnings in 'cae/'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Network server for caed(8).
|
||||
//
|
||||
// (C) Copyright 2019-2023 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2019-2025 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -228,7 +228,7 @@ bool CaeServer::ProcessCommand(int id,const QString &cmd)
|
||||
CaeServerConnection *conn=cae_connections.value(id);
|
||||
bool ok=false;
|
||||
QString cmdstr=cmd;
|
||||
QStringList f0=cmd.split(" ",QString::SkipEmptyParts);
|
||||
QStringList f0=cmd.split(" ",Qt::SkipEmptyParts);
|
||||
|
||||
if(f0.size()==0) {
|
||||
return false;
|
||||
|
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// caed(8) driver for Advanced Linux Audio Architecture devices
|
||||
//
|
||||
// (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2021-2025 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -465,7 +465,7 @@ bool DriverJack::initialize(unsigned *next_cardnum)
|
||||
//
|
||||
if(rda->station()->startJack()) {
|
||||
QStringList args=
|
||||
rda->station()->jackCommandLine().split(" ",QString::SkipEmptyParts);
|
||||
rda->station()->jackCommandLine().split(" ",Qt::SkipEmptyParts);
|
||||
if(args.size()) {
|
||||
QString program=args.at(0);
|
||||
args.removeFirst();
|
||||
@@ -1421,7 +1421,7 @@ void DriverJack::clientStartData()
|
||||
QString cmd=RDDateDecode(q->value(1).toString(),QDate::currentDate(),
|
||||
rda->station(),rda->config(),
|
||||
rda->config()->provisioningServiceName(rda->config()->stationName()));
|
||||
QStringList args=cmd.split(" ",QString::SkipEmptyParts);
|
||||
QStringList args=cmd.split(" ",Qt::SkipEmptyParts);
|
||||
QString program=args.at(0);
|
||||
args.removeFirst();
|
||||
jack_clients.push_back(new QProcess(this));
|
||||
|
Reference in New Issue
Block a user