mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 22:48:01 +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:
parent
7a6537e2b3
commit
3fe3350310
@ -21842,3 +21842,5 @@
|
||||
* Cleaned up compile warnings in rdalsaconfig(8).
|
||||
2021-06-02 Fred Gleason <fredg@paravelsystems.com>
|
||||
* 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(":");
|
||||
if(f0.size()==2) {
|
||||
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);
|
||||
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_end_carts.push_back(end);
|
||||
ok=true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user