mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 23:30:20 +01:00
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rddbmgr(8) that caused --check options not to be recognized.
This commit is contained in:
@@ -17444,3 +17444,6 @@
|
|||||||
* Fixed style inconsistencies in dialogs within rmlsend(1).
|
* Fixed style inconsistencies in dialogs within rmlsend(1).
|
||||||
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
|
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Removed obsolete DB checks from rddbmgr(8).
|
* Removed obsolete DB checks from rddbmgr(8).
|
||||||
|
2018-08-16 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rddbmgr(8) that caused --check options not to be
|
||||||
|
recognized.
|
||||||
|
|||||||
@@ -189,24 +189,31 @@ MainObject::MainObject(QObject *parent)
|
|||||||
//
|
//
|
||||||
if(cmd->key(i)=="--yes") {
|
if(cmd->key(i)=="--yes") {
|
||||||
db_yes=true;
|
db_yes=true;
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--no") {
|
if(cmd->key(i)=="--no") {
|
||||||
db_no=true;
|
db_no=true;
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--orphan-group") {
|
if(cmd->key(i)=="--orphan-group") {
|
||||||
db_orphan_group_name=cmd->value(i);
|
db_orphan_group_name=cmd->value(i);
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--dump-cuts-dir") {
|
if(cmd->key(i)=="--dump-cuts-dir") {
|
||||||
db_dump_cuts_dir=cmd->value(i);
|
db_dump_cuts_dir=cmd->value(i);
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--relink-audio") {
|
if(cmd->key(i)=="--relink-audio") {
|
||||||
db_relink_audio=cmd->value(i);
|
db_relink_audio=cmd->value(i);
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--relink-audio-move") {
|
if(cmd->key(i)=="--relink-audio-move") {
|
||||||
db_relink_audio_move=true;
|
db_relink_audio_move=true;
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
if(cmd->key(i)=="--rehash") {
|
if(cmd->key(i)=="--rehash") {
|
||||||
db_rehash=cmd->value(i);
|
db_rehash=cmd->value(i);
|
||||||
|
cmd->setProcessed(i,true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!cmd->processed(i)) {
|
if(!cmd->processed(i)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user