mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-18 16:41:18 +02:00
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compile warnings in rdexport(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -21842,3 +21842,5 @@
|
|||||||
* Cleaned up compile warnings in rdalsaconfig(8).
|
* Cleaned up compile warnings in rdalsaconfig(8).
|
||||||
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Cleaned up compile warnings in rddbmgr(8).
|
* Cleaned up compile warnings in rddbmgr(8).
|
||||||
|
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Cleaned up compile warnings in rdexport(1).
|
||||||
|
@@ -89,9 +89,9 @@ MainObject::MainObject(QObject *parent)
|
|||||||
QStringList f0=rda->cmdSwitch()->value(i).split(":");
|
QStringList f0=rda->cmdSwitch()->value(i).split(":");
|
||||||
if(f0.size()==2) {
|
if(f0.size()==2) {
|
||||||
int start=f0[0].toUInt(&valid);
|
int start=f0[0].toUInt(&valid);
|
||||||
if(valid&&(start>0)&&(valid<=RD_MAX_CART_NUMBER)) {
|
if(valid&&(start>0)&&(start<=RD_MAX_CART_NUMBER)) {
|
||||||
int end=f0[1].toUInt(&valid);
|
int end=f0[1].toUInt(&valid);
|
||||||
if(valid&&(start>0)&&(valid<=RD_MAX_CART_NUMBER)&&(end>=start)) {
|
if(valid&&(start>0)&&(start<=RD_MAX_CART_NUMBER)&&(end>=start)) {
|
||||||
export_start_carts.push_back(start);
|
export_start_carts.push_back(start);
|
||||||
export_end_carts.push_back(end);
|
export_end_carts.push_back(end);
|
||||||
ok=true;
|
ok=true;
|
||||||
|
Reference in New Issue
Block a user