mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Rename the files and classes for the dialogs to share all the same naming pattern. This should make navigation in the code a bit easier. Do not include dialogs not rewritten yet; they'll be edited as they are redesigned.
23 lines
282 B
C++
23 lines
282 B
C++
#ifndef __ABOUTDIALOG_H__
|
|
#define __ABOUTDIALOG_H__
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget *parent = 0);
|
|
~AboutDialog();
|
|
|
|
private:
|
|
Ui::AboutDialog *ui;
|
|
};
|
|
|
|
#endif
|