diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-09-05 23:25:36 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2018-09-06 06:47:29 +0200 |
commit | d80b3235cc106e17a0c10dea44e8afa8db724400 (patch) | |
tree | 03841cc5e18073508c217685af3007963d291c93 | |
parent | 7f43f0b50135e147fb2bb1f942da3bf60153fd2c (diff) |
tdf#91837: fix deinitializeControls (forms)
m_bControlsInitialized wasn't ever resetted to false
Change-Id: I9f7bd6504ccaa0a41c9cb075c1ba33436f0f97dc
Reviewed-on: https://gerrit.libreoffice.org/60059
Tested-by: Jenkins
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
-rw-r--r-- | svx/source/form/formcontroller.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx index 01f30d5266e8..8e4396a5440a 100644 --- a/svx/source/form/formcontroller.cxx +++ b/svx/source/form/formcontroller.cxx @@ -325,6 +325,7 @@ void ColumnInfoCache::deinitializeControls() { lcl_resetColumnControlInfo( *col ); } + m_bControlsInitialized = false; } |