src/AboutDialog.h

Thu, 17 Feb 2022 21:00:24 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 17 Feb 2022 21:00:24 +0100
changeset 17
f0bcdbd3d36f
parent 6
f8474f2c5db9
permissions
-rw-r--r--

Forgot one signal in Setup. EditSupplier now has signals to track edit changes. The Window header has ** mark if anything is changed. Added errors message boxes.

#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 // ABOUTDIALOG_H

mercurial