mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
10 lines
187 B
C++
10 lines
187 B
C++
#include "MainWindow.h"
|
|
|
|
|
|
void MainWindow::newX509Req()
|
|
{
|
|
NewX509Req_UI *dlg = new NewX509Req_UI(this,0,true,0);
|
|
dlg->keyList->insertStringList(keys->getPrivateDesc());
|
|
dlg->exec();
|
|
}
|