X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faboutdata.h;h=072bcb7d86df79955def1fe85a9d40923957457c;hp=6c306be910b9429fcf0dc03f06f9612452f68803;hb=3a3e844f9fcfd12235a0086af75ecd503b621ef4;hpb=ef13687df76b292f36f330bed44cf9f35ac53632 diff --git a/src/uisupport/aboutdata.h b/src/uisupport/aboutdata.h index 6c306be9..072bcb7d 100644 --- a/src/uisupport/aboutdata.h +++ b/src/uisupport/aboutdata.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -20,7 +20,11 @@ #pragma once +#include "uisupport-export.h" + +#include #include +#include #ifdef HAVE_KF5 # include @@ -32,7 +36,7 @@ * * This is used to show a list of contributors in the About Quassel dialog. */ -class AboutPerson +class UISUPPORT_EXPORT AboutPerson { public: /** @@ -44,7 +48,7 @@ public: * @param[in] emailAddress The person's email address, if applicable * @param[in] translatedLanguage The language the person helped translate (only applicable for translators) */ - AboutPerson(const QString &name, const QString &nick, const QString &task, const QString &emailAddress = QString(), QLocale::Language translatedLanguage = QLocale::C); + AboutPerson(QString name, QString nick, QString task, QString emailAddress = QString(), QLocale::Language translatedLanguage = QLocale::C); /** * Gets the person's name. @@ -104,7 +108,7 @@ private: * the About Quassel dialog. Additionally, this class can provide a KAboutData object to be shown * if KDE integration is enabled. */ -class AboutData : public QObject +class UISUPPORT_EXPORT AboutData : public QObject { Q_OBJECT public: