mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-10 18:15:18 -04:00
added InfoDialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1669 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
10f5f474e2
commit
c9f295a760
11 changed files with 915 additions and 683 deletions
|
@ -23,6 +23,7 @@
|
|||
#include <rshare.h>
|
||||
#include <rsiface/rsinit.h>
|
||||
#include "GenCertDialog.h"
|
||||
#include "InfoDialog.h"
|
||||
#include "gui/Preferences/rsharesettings.h"
|
||||
#include <QFileDialog>
|
||||
#include <QMessageBox>
|
||||
|
@ -43,6 +44,7 @@ GenCertDialog::GenCertDialog(QWidget *parent, Qt::WFlags flags)
|
|||
|
||||
|
||||
connect(ui.genButton, SIGNAL(clicked()), this, SLOT(genPerson()));
|
||||
connect(ui.infopushButton,SIGNAL(clicked()), this, SLOT(infodlg()));
|
||||
//connect(ui.selectButton, SIGNAL(clicked()), this, SLOT(selectFriend()));
|
||||
//connect(ui.friendBox, SIGNAL(stateChanged(int)), this, SLOT(checkChanged(int)));
|
||||
|
||||
|
@ -248,3 +250,8 @@ void GenCertDialog::loadCertificates()
|
|||
}
|
||||
}
|
||||
|
||||
void GenCertDialog::infodlg()
|
||||
{
|
||||
static InfoDialog *infodialog = new InfoDialog();
|
||||
infodialog->show();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue