From: Kevin Ottens Date: Thu, 8 Oct 2020 13:58:29 +0000 (+0200) Subject: Export the WordList functions X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~118^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a53a87a3eb482180950c93dd890cf3278afd5fa9;p=nextcloud-desktop.git Export the WordList functions Now that they are used from gui/ they need to be properly exported so that linking doesn't fail when visibility is activated (only on our Windows build it seems). Signed-off-by: Kevin Ottens --- diff --git a/src/libsync/wordlist.h b/src/libsync/wordlist.h index b8891640b..6e11787ca 100644 --- a/src/libsync/wordlist.h +++ b/src/libsync/wordlist.h @@ -4,10 +4,12 @@ #include #include +#include "owncloudlib.h" + namespace OCC { namespace WordList { - QStringList getRandomWords(int nr); - QString getUnifiedString(const QStringList& l); + OWNCLOUDSYNC_EXPORT QStringList getRandomWords(int nr); + OWNCLOUDSYNC_EXPORT QString getUnifiedString(const QStringList& l); } }