1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-18 04:00:03 +02:00

gui/src/MainWindow: Add menu item to switch between FIO/EOS key prefixes.

This commit is contained in:
Henrik Hautakoski 2021-05-07 13:40:47 +02:00
parent 6bd84b1d8d
commit 7fb1774359
2 changed files with 26 additions and 2 deletions

View file

@ -24,6 +24,8 @@
#ifndef MAIN_WINDOW_H
#define MAIN_WINDOW_H
#include <QAction>
#include <QPointer>
#include <QMainWindow>
class QStackedWidget;
@ -44,9 +46,13 @@ private slots :
void showAbout();
void fioKeysCheckboxChanged();
private :
QStackedWidget* m_stacked;
QPointer<QAction> m_fio_action;
};
#endif /* MAIN_WINDOW_H */