diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-10-12 15:44:56 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-10-12 15:44:56 -0400 |
commit | f7cf0280f9f83eabad93221ea91977bc384ec20a (patch) | |
tree | 9659acc8104c6b6cccc0c051153bde63a747450d /sc/source/ui/inc | |
parent | 3ab2280e3f88b75408117948deb385ac146be5d6 (diff) |
Took care of loading and saving of the new option value.
The new option value is now persistent with the Options dialog, but
key bindings don't get reset yet.
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/tpcompatibility.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/ui/inc/tpcompatibility.hxx b/sc/source/ui/inc/tpcompatibility.hxx index 75942c7cdd46..423ac2e4d22d 100644 --- a/sc/source/ui/inc/tpcompatibility.hxx +++ b/sc/source/ui/inc/tpcompatibility.hxx @@ -32,6 +32,10 @@ #include <vcl/fixed.hxx> #include <vcl/lstbox.hxx> +#include <boost/shared_ptr.hpp> + +class ScDocOptions; + class ScTpCompatOptions : public SfxTabPage { public: @@ -50,6 +54,8 @@ private: FixedText maFtKeyBindings; ListBox maLbKeyBindings; + ::boost::shared_ptr<ScDocOptions> mpOldOptions; + ::boost::shared_ptr<ScDocOptions> mpNewOptions; }; #endif |