mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Refactoring: fix mixed indentation and add curly braces in comic.cpp
This commit is contained in:
19
YACReader/shortcuts_dialog.h
Normal file
19
YACReader/shortcuts_dialog.h
Normal file
@ -0,0 +1,19 @@
|
||||
#ifndef SHORTCUTS_DIALOG_H
|
||||
#define SHORTCUTS_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QTextEdit>
|
||||
#include <QPushButton>
|
||||
|
||||
class ShortcutsDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ShortcutsDialog(QWidget * parent = 0);
|
||||
private:
|
||||
QTextEdit * shortcuts;
|
||||
QPushButton * close;
|
||||
public slots:
|
||||
};
|
||||
|
||||
#endif // SHORTCUTS_DIALOG_H
|
Reference in New Issue
Block a user