1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-24 22:42:28 +00:00

Some minors fix

This commit is contained in:
2025-01-10 13:58:46 +01:00
parent 5e5a092da1
commit 80a5055b78
5 changed files with 4 additions and 7 deletions

View File

@ -6,9 +6,6 @@
#include "libgit.h"
Git::Git()
{}
bool Git::clone(QString url, QString path)
{
qInfo() << "Cloning " << url << "password_store to " << path;

View File

@ -10,7 +10,7 @@ class Git : public QObject
Q_OBJECT
public:
Git();
Git() = default;
~Git() override = default;
Q_INVOKABLE bool clone(QString url, QString path);