mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
![]() |
/*
|
||
|
* Copyright (C) 2009,2012,2013 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
||
|
*/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU General Public License as published by *
|
||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#include "kgpgprimaryuid.h"
|
||
|
|
||
|
#include "model/kgpgitemnode.h"
|
||
|
|
||
|
KGpgPrimaryUid::KGpgPrimaryUid(QObject *parent, KGpgUidNode *uid)
|
||
|
: KGpgUidTransaction(parent, uid->getParentKeyNode()->getId(), uid->getId())
|
||
|
{
|
||
|
addArgument(QLatin1String("primary"));
|
||
|
addArgument(QLatin1String("save"));
|
||
|
}
|
||
|
|
||
|
KGpgPrimaryUid::~KGpgPrimaryUid()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool
|
||
|
KGpgPrimaryUid::nextLine(const QString &)
|
||
|
{
|
||
|
setSuccess(TS_MSG_SEQUENCE);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool
|
||
|
KGpgPrimaryUid::passphraseReceived()
|
||
|
{
|
||
|
setSuccess(TS_OK);
|
||
|
return KGpgTransaction::passphraseReceived();
|
||
|
}
|
||
|
|
||
|
#include "kgpgprimaryuid.moc"
|