yacreader/YACReader/shortcuts_dialog.h
Luis Ángel San Martín 923ad40057 Use nullptr instead of 0
2019-06-01 16:04:48 +02:00

21 lines
336 B
C++

#ifndef SHORTCUTS_DIALOG_H
#define SHORTCUTS_DIALOG_H
#include <QDialog>
#include <QTextEdit>
#include <QPushButton>
class ShortcutsDialog : public QDialog
{
Q_OBJECT
public:
ShortcutsDialog(QWidget *parent = nullptr);
private:
QTextEdit *shortcuts;
QPushButton *close;
public slots:
};
#endif // SHORTCUTS_DIALOG_H