X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.h;h=9d04f5adf3b5a2e670b22f68473ed2394c812a30;hb=24c7de34254b5de4cf28045a6923a527e06f7290;hp=f2f85421d09d39f7c56e8083318ae11316d74430;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a;p=quassel.git diff --git a/src/qtui/aboutdlg.h b/src/qtui/aboutdlg.h index f2f85421..9d04f5ad 100644 --- a/src/qtui/aboutdlg.h +++ b/src/qtui/aboutdlg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -25,12 +25,14 @@ #include "ui_aboutdlg.h" +class AboutData; + class AboutDlg : public QDialog { Q_OBJECT public: - AboutDlg(QWidget *parent = 0); + AboutDlg(QWidget* parent = nullptr); private: Ui::AboutDlg ui; @@ -39,7 +41,8 @@ private: QString authors() const; QString contributors() const; QString thanksTo() const; -}; + AboutData* _aboutData; +}; #endif