renamed passgen to generate and use diceware default wordcount

This commit is contained in:
thez3ro 2018-01-31 00:50:02 +01:00
parent e57a2e0fa9
commit 4782b20d61
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
5 changed files with 28 additions and 21 deletions

View file

@ -28,10 +28,10 @@
#include "Edit.h"
#include "Estimate.h"
#include "Extract.h"
#include "Generate.h"
#include "List.h"
#include "Locate.h"
#include "Merge.h"
#include "PassGen.h"
#include "Remove.h"
#include "Show.h"
@ -67,10 +67,10 @@ void populateCommands()
commands.insert(QString("edit"), new Edit());
commands.insert(QString("estimate"), new Estimate());
commands.insert(QString("extract"), new Extract());
commands.insert(QString("generate"), new Generate());
commands.insert(QString("locate"), new Locate());
commands.insert(QString("ls"), new List());
commands.insert(QString("merge"), new Merge());
commands.insert(QString("passgen"), new PassGen());
commands.insert(QString("rm"), new Remove());
commands.insert(QString("show"), new Show());
}