ui: added individual help window titles

This commit is contained in:
mlangkabel
2017-10-25 09:56:31 +02:00
parent c73e58893e
commit ee11528ddf
13 changed files with 37 additions and 28 deletions
+2 -1
View File
@@ -9,12 +9,13 @@ class QtHelpButton
Q_OBJECT
public:
QtHelpButton(const QString& helpText, QWidget* parent = nullptr);
QtHelpButton(const QString& helpTitle, const QString& helpText, QWidget* parent = nullptr);
private slots:
void handleHelpPress();
private:
QString m_helpTitle;
QString m_helpText;
};