mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-19 20:59:02 -04:00
HomePage.cpp enable saveCert
This commit is contained in:
parent
c850a30c1a
commit
f3150e9d42
1 changed files with 4 additions and 0 deletions
|
@ -65,6 +65,9 @@ HomePage::HomePage(QWidget *parent) :
|
|||
QAction *RecAction = new QAction(QIcon(),tr("Recommend friends to each others"), this);
|
||||
connect(RecAction, SIGNAL(triggered()), this, SLOT(recommendFriends()));
|
||||
|
||||
QAction *SaveAction = new QAction(QIcon(),tr("Save to File"), this);
|
||||
connect(SaveAction, SIGNAL(triggered()), this, SLOT(saveCert()));
|
||||
|
||||
QAction *SendAction = new QAction(QIcon(),tr("Send via Email"), this);
|
||||
connect(SendAction, SIGNAL(triggered()), this, SLOT(runEmailClient()));
|
||||
|
||||
|
@ -75,6 +78,7 @@ HomePage::HomePage(QWidget *parent) :
|
|||
menu->addAction(CopyIdAction);
|
||||
|
||||
menu->addSeparator();
|
||||
menu->addAction(SaveAction);
|
||||
menu->addAction(SendAction);
|
||||
menu->addAction(WebMailAction);
|
||||
menu->addAction(RecAction);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue