summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-11-03 17:20:11 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2022-11-03 23:22:14 +0100
commit2640796d90ad4c69f5093e7b3353d43b647901e1 (patch)
tree3649e5a94f17083d1cbd50d85dd2651b92f7396b /include
parentc5e872e06a070ff8e90f644036981fa202c2b1e0 (diff)
UnoApiTest: make mbSkipValidation private
Change-Id: Icc292b40b3295e7890f81d448bb4907725f46970 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142245 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'include')
-rw-r--r--include/test/unoapi_test.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/test/unoapi_test.hxx b/include/test/unoapi_test.hxx
index 8c27437d237d..2b29e50a5bfd 100644
--- a/include/test/unoapi_test.hxx
+++ b/include/test/unoapi_test.hxx
@@ -40,17 +40,16 @@ public:
utl::TempFileNamed saveAndClose(const OUString& rFilter);
utl::TempFileNamed saveAndReload(const OUString& rFilter);
+ void skipValidation() { mbSkipValidation = true; }
void setFilterOptions(const OUString& rFilterOptions) { maFilterOptions = rFilterOptions; }
protected:
// reference to document component that we are testing
css::uno::Reference<css::lang::XComponent> mxComponent;
- bool mbSkipValidation; // if you set this flag for a new test I'm going to haunt you!
-
private:
+ bool mbSkipValidation;
OUString m_aBaseString;
-
OUString maFilterOptions;
};