From 84efebb5304b2ebbc03e7743b131ce4d5ad10c03 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 8 Jun 2018 13:16:50 +0200 Subject: return SalSession with std::unique_ptr Change-Id: I85527407c0cd2d3b94565fd7e24b0616948c9b0f Reviewed-on: https://gerrit.libreoffice.org/55497 Tested-by: Jenkins Reviewed-by: Noel Grandin --- vcl/source/app/salvtables.cxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'vcl/source') diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index ca3b6fb3aa00..1b35c8be0461 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -81,6 +82,11 @@ SalInstance::~SalInstance() { } +std::unique_ptr SalInstance::CreateSalSession() +{ + return nullptr; +} + SalMenu* SalInstance::CreateMenu( bool, Menu* ) { // default: no native menus -- cgit