From 0b9e840bf042ede67bc333cf90c91c62198e6e7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 22 Jun 2016 20:02:02 +0200 Subject: [PATCH] Fixed static member initialization. --- YACReaderLibrary/server/static.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/YACReaderLibrary/server/static.cpp b/YACReaderLibrary/server/static.cpp index 49e0060e..0f9d7733 100644 --- a/YACReaderLibrary/server/static.cpp +++ b/YACReaderLibrary/server/static.cpp @@ -17,6 +17,8 @@ HttpSessionStore* Static::sessionStore=0; StaticFileController* Static::staticFileController=0; +QMap Static::yacreaderSessionStore; + QString Static::getConfigFileName() { return QString("%1/%2.ini").arg(getConfigDir()).arg(QCoreApplication::applicationName()); }