diff options
author | Gergo Mocsi <gmocsi91@gmail.com> | 2013-08-14 12:56:39 +0200 |
---|---|---|
committer | Gergo Mocsi <gmocsi91@gmail.com> | 2013-09-02 18:16:59 +0200 |
commit | 82a4ad7a5c18801c64a28e9df6a96c0e1abf5b64 (patch) | |
tree | b0c6944080ba45b6a4fd0685c9f670ba339c9a0c /cui | |
parent | 9b534193a3132764f7c5a659025ab2c49bfb2605 (diff) |
GSOC work, renaming + options fix
Options now work correctly: I've added the missing function.
Rename: renamed some variables and methods to kep the consistence( Autocorrect keywords -> Autocorrect).
Change-Id: I6b4914575f1a06eb3268c133b8b990364e3d24e4
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optbasic.cxx | 6 | ||||
-rw-r--r-- | cui/source/options/optbasic.hxx | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cui/source/options/optbasic.cxx b/cui/source/options/optbasic.cxx index 717f526854d2..21026b302782 100644 --- a/cui/source/options/optbasic.cxx +++ b/cui/source/options/optbasic.cxx @@ -155,4 +155,10 @@ SfxTabPage* SvxBasicIDEOptionsPage::Create( Window* pParent, const SfxItemSet& r return ( new SvxBasicIDEOptionsPage( pParent, rAttrSet ) ); } +void SvxBasicIDEOptionsPage::FillUserData() +{ + OUString aUserData; + SetUserData( aUserData ); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/cui/source/options/optbasic.hxx b/cui/source/options/optbasic.hxx index 2ca482024e1f..fe1b52e04d28 100644 --- a/cui/source/options/optbasic.hxx +++ b/cui/source/options/optbasic.hxx @@ -44,6 +44,7 @@ public: static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet ); virtual sal_Bool FillItemSet( SfxItemSet& rSet ); virtual void Reset( const SfxItemSet& rSet ); + virtual void FillUserData(); }; |