Disable Basic IDE options, if experimental features are not enabled
Change-Id: I424abb618b4581bfb1e6dd97f59c32e91bca4cc6 Reviewed-on: https://gerrit.libreoffice.org/31241 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
This commit is contained in:
parent
8d52045853
commit
316f938d63
@ -19,7 +19,6 @@
|
||||
|
||||
#include "optbasic.hxx"
|
||||
#include <basic/codecompletecache.hxx>
|
||||
#include <svtools/miscopt.hxx>
|
||||
#include <iostream>
|
||||
#include <officecfg/Office/BasicIDE.hxx>
|
||||
#include <cuires.hrc>
|
||||
@ -27,12 +26,6 @@
|
||||
SvxBasicIDEOptionsPage::SvxBasicIDEOptionsPage( vcl::Window* pParent, const SfxItemSet& rSet )
|
||||
: SfxTabPage(pParent, "OptBasicIDEPage", "cui/ui/optbasicidepage.ui", &rSet)
|
||||
{
|
||||
SvtMiscOptions aMiscOpt;
|
||||
if( ! aMiscOpt.IsExperimentalMode() )
|
||||
{
|
||||
Disable();
|
||||
}
|
||||
|
||||
get(pCodeCompleteChk, "codecomplete_enable");
|
||||
get(pAutocloseProcChk, "autoclose_proc");
|
||||
get(pAutocloseParenChk, "autoclose_paren");
|
||||
@ -41,7 +34,6 @@ SvxBasicIDEOptionsPage::SvxBasicIDEOptionsPage( vcl::Window* pParent, const SfxI
|
||||
get(pUseExtendedTypesChk, "extendedtypes_enable");
|
||||
|
||||
LoadConfig();
|
||||
|
||||
}
|
||||
|
||||
SvxBasicIDEOptionsPage::~SvxBasicIDEOptionsPage()
|
||||
|
@ -85,6 +85,7 @@
|
||||
#include <sfx2/viewsh.hxx>
|
||||
#include <svl/languageoptions.hxx>
|
||||
#include <svtools/helpopt.hxx>
|
||||
#include <svtools/miscopt.hxx>
|
||||
#include <svx/drawitem.hxx>
|
||||
#include <svx/xtable.hxx>
|
||||
#include <svx/xpool.hxx>
|
||||
@ -1482,6 +1483,15 @@ void OfaTreeOptionsDialog::Initialize( const Reference< XFrame >& _xFrame )
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
// Disable Basic IDE options, if experimental features are not enabled
|
||||
if( RID_SVXPAGE_BASICIDE_OPTIONS == nPageId )
|
||||
{
|
||||
SvtMiscOptions aMiscOpt;
|
||||
if( ! aMiscOpt.IsExperimentalMode() )
|
||||
continue;
|
||||
}
|
||||
|
||||
AddTabPage( nPageId, sNewTitle, nGroup );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user