src/ImportBrew.h

Thu, 18 Aug 2022 19:47:28 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 18 Aug 2022 19:47:28 +0200
changeset 399
4b9aaf86094e
parent 387
7945bf3be1f9
permissions
-rw-r--r--

Prompts corrections and updated translations. Minor layout changes so the prompts will fit.

#ifndef _IMPORTBREW_H
#define _IMPORTBREW_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportBrew;
}

class ImportBrew : public QDialog
{
    Q_OBJECT

public:
    explicit ImportBrew(QWidget *parent = 0);
    ~ImportBrew();

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportBrew *ui;

    void WindowTitle();
};

#endif

mercurial