From a5216cf1eb647862f377bed9b9a447e8bccf338f Mon Sep 17 00:00:00 2001 From: Noel Date: Wed, 2 Dec 2020 09:41:10 +0200 Subject: convert SvtPathOptions::Paths to scoped enum Change-Id: I2e6cab798309a1bc2ade00661bc95dd5ae20f748 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107045 Tested-by: Jenkins Reviewed-by: Noel Grandin --- basic/source/basmgr/basmgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basic/source/basmgr/basmgr.cxx') diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index 50ff14effade..77f5939cd9d0 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -715,7 +715,7 @@ void BasicManager::LoadBasicManager( SotStorage& rStorage, const OUString& rBase OUString aSearchFile = pInfo->GetRelStorageName(); OUString aSearchFileOldFormat(aSearchFile); SvtPathOptions aPathCFG; - if( aPathCFG.SearchFile( aSearchFileOldFormat, SvtPathOptions::PATH_BASIC ) ) + if( aPathCFG.SearchFile( aSearchFileOldFormat, SvtPathOptions::Paths::Basic ) ) { pInfo->SetStorageName( aSearchFile ); } -- cgit