X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ficon.h;h=17ed902e17bf318a73e59f9def656595afa0a528;hp=18ec665c051066763da7b6d599ab23f1f1157781;hb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;hpb=b7447afe8e836376776dac26704e227a678d2913 diff --git a/src/uisupport/icon.h b/src/uisupport/icon.h index 18ec665c..17ed902e 100644 --- a/src/uisupport/icon.h +++ b/src/uisupport/icon.h @@ -20,6 +20,8 @@ #pragma once +#include "uisupport-export.h" + #include #include @@ -39,7 +41,7 @@ namespace icon { * @param fallbackPath Full path to a fallback icon * @returns The requested icon, if available */ -QIcon get(const QString &iconName, const QString &fallbackPath = {}); +UISUPPORT_EXPORT QIcon get(const QString &iconName, const QString &fallbackPath = {}); /** * Gets an icon from the current icon theme. @@ -53,6 +55,6 @@ QIcon get(const QString &iconName, const QString &fallbackPath = {}); * @param fallbackPath Full path to a fallback icon * @returns The requested icon, if available */ -QIcon get(const std::vector &iconNames, const QString &fallbackPath = {}); +UISUPPORT_EXPORT QIcon get(const std::vector &iconNames, const QString &fallbackPath = {}); }