From 0358fab47ad8e2cd2b1d1c7436f486f597e8c42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Fri, 24 Jun 2016 18:28:44 +0200 Subject: [PATCH] Replace the yacreader sessions map with the new store. --- YACReaderLibrary/server/static.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/YACReaderLibrary/server/static.h b/YACReaderLibrary/server/static.h index 3425ba7b..154f2ad9 100644 --- a/YACReaderLibrary/server/static.h +++ b/YACReaderLibrary/server/static.h @@ -11,7 +11,7 @@ #include "httpsessionstore.h" #include "staticfilecontroller.h" -#include "yacreader_http_session.h" +#include "yacreader_http_session_store.h" /** This class contains some static resources that are used by the application. @@ -53,7 +53,7 @@ public: /** Storage for session cookies */ static HttpSessionStore* sessionStore; - static QMap yacreaderSessionStore; + static YACReaderHttpSessionStore* yacreaderSessionStore; /** Controller for static files */ static StaticFileController* staticFileController;