diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-10-31 22:04:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-01 15:14:33 +0100 |
commit | 7a896f183dca54aa9d8529f5797920cf629f9210 (patch) | |
tree | c4475c2352c5dcab2521709db12199fa7084c2fb /include | |
parent | 9aa8552bf9168836662b45798e06de4b972550ed (diff) |
use officecfg for Experimental flag
move IsShowOutlineContentVisibilityButton out of header to
avoid having to add extra include paths to all the unit
test makefiles.
Change-Id: I2763390e07cd85b8f09b6f2ad7702039daecb22f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105100
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/basic/codecompletecache.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/sidebar/ResourceManager.hxx | 4 | ||||
-rw-r--r-- | include/svtools/miscopt.hxx | 3 |
3 files changed, 1 insertions, 8 deletions
diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index 8f4b4a565c1c..37ab4a499a16 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -23,7 +23,6 @@ #include <config_options.h> #include <basic/basicdllapi.h> #include <rtl/ustring.hxx> -#include <svtools/miscopt.hxx> #include <unordered_map> typedef std::unordered_map< OUString, OUString > CodeCompleteVarTypes; @@ -44,7 +43,6 @@ private: bool bIsAutoCloseParenthesisOn; bool bIsAutoCorrectOn; bool bExtendedTypeDeclarationOn; - SvtMiscOptions aMiscOptions; public: CodeCompleteOptions(); diff --git a/include/sfx2/sidebar/ResourceManager.hxx b/include/sfx2/sidebar/ResourceManager.hxx index 97987ea1a86b..68c208f7b603 100644 --- a/include/sfx2/sidebar/ResourceManager.hxx +++ b/include/sfx2/sidebar/ResourceManager.hxx @@ -21,8 +21,8 @@ #include <unotools/confignode.hxx> #include <map> +#include <vector> #include <set> -#include <svtools/miscopt.hxx> namespace com::sun::star::frame { class XController; } namespace com::sun::star::frame { class XModel; } @@ -107,8 +107,6 @@ private: mutable std::set<OUString> maProcessedApplications; std::map<OUString, OUString> maLastActiveDecks; - SvtMiscOptions maMiscOptions; - void ReadDeckList(); void ReadPanelList(); void ReadLastActive(); diff --git a/include/svtools/miscopt.hxx b/include/svtools/miscopt.hxx index d981d8a2846c..8fb276063a1b 100644 --- a/include/svtools/miscopt.hxx +++ b/include/svtools/miscopt.hxx @@ -86,9 +86,6 @@ class SVT_DLLPUBLIC SvtMiscOptions final : public utl::detail::Options void SetShowLinkWarningDialog( bool bSet ); bool IsShowLinkWarningDialogReadOnly() const; - void SetExperimentalMode( bool bSet ); - bool IsExperimentalMode() const; - void SetMacroRecorderMode( bool bSet ); bool IsMacroRecorderMode() const; |