fix cli commands, translations and codestyle

This commit is contained in:
thez3ro 2018-02-06 01:17:36 +01:00
parent 6723f4215a
commit 1bfbb9242c
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
30 changed files with 70 additions and 67 deletions

View file

@ -34,15 +34,15 @@
Remove::Remove()
{
this->name = QString("rm");
this->description = QString("Remove an entry from the database.");
name = QString("rm");
description = QString("Remove an entry from the database.");
}
Remove::~Remove()
{
}
int Remove::execute(QStringList arguments)
int Remove::execute(const QStringList& arguments)
{
QTextStream outputTextStream(stdout, QIODevice::WriteOnly);