diff options
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/pch/precompiled_sb.hxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxarray.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/basic/inc/pch/precompiled_sb.hxx b/basic/inc/pch/precompiled_sb.hxx index ab5c6ce4f40e..203b7562b7f6 100644 --- a/basic/inc/pch/precompiled_sb.hxx +++ b/basic/inc/pch/precompiled_sb.hxx @@ -29,7 +29,7 @@ #include <stdlib.h> #include <string.h> #include <vector> -#include <boost/optional.hpp> +#include <o3tl/optional.hxx> #include <boost/property_tree/ptree.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx index f8bbafbc64fd..6a3cc720c91d 100644 --- a/basic/source/sbx/sbxarray.cxx +++ b/basic/source/sbx/sbxarray.cxx @@ -24,14 +24,14 @@ #include <basic/sbx.hxx> #include <runtime.hxx> -#include <boost/optional.hpp> +#include <o3tl/optional.hxx> using namespace std; struct SbxVarEntry { SbxVariableRef mpVar; - boost::optional<OUString> maAlias; + o3tl::optional<OUString> maAlias; }; |