diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-03-21 20:09:55 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-03-22 00:24:27 +0100 |
commit | 1ab961d98a079d70654041219b14797cc6c62447 (patch) | |
tree | 793dcc6e6343feef675deff9ee6bc63b085f0d0e /reportdesign | |
parent | ec64924ea82df15ce2d340b7dca0f2301efbf77c (diff) |
Make sure one base class does not use another one after destruction
see 706ac4779de1870cf0d922f1cc3f6d4470392403 and fdo#47589
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/inc/Formula.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/ui/inc/Formula.hxx b/reportdesign/source/ui/inc/Formula.hxx index c458ccf240e4..a297027517ed 100644 --- a/reportdesign/source/ui/inc/Formula.hxx +++ b/reportdesign/source/ui/inc/Formula.hxx @@ -45,8 +45,8 @@ class FunctionManager; class OAddFieldWindow; //============================================================================ -class FormulaDialog : public formula::FormulaModalDialog, - public formula::IFormulaEditorHelper, +class FormulaDialog : public formula::IFormulaEditorHelper, + public formula::FormulaModalDialog, public formula::IControlReferenceHandler { ::boost::shared_ptr< formula::IFunctionManager > m_aFunctionManager; |