X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Faboutdlg.h;h=bd9311af6eb1da4f385294ca4ca89645c7a94074;hp=a2e76ac5abe0672a5d0e6deaf4e05ff7c57f233c;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/qtui/aboutdlg.h b/src/qtui/aboutdlg.h index a2e76ac5..bd9311af 100644 --- a/src/qtui/aboutdlg.h +++ b/src/qtui/aboutdlg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 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