To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70517


User mmeeks changed the following:

                What    |Old value                 |New value
================================================================================
                      CC|'ja'                      |'fs,ja,obr'
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Wed Nov 15 04:57:14 -0800 
2006 -------
bingo - after some hunting, the policy decision to have the quick-starter on is
hidden in:

desktop/source/migration/wizard.cxx:

void FirstStartWizard::enableQuickstart()
{
    sal_Bool bQuickstart( sal_True );
    sal_Bool bAutostart( sal_True );
    Sequence< Any > aSeq( 2 );
    aSeq[0] <<= bQuickstart;
    aSeq[1] <<= bAutostart;

    Reference < XInitialization > xQuickstart(
::comphelper::getProcessServiceFactory()->createInstance(
        OUString::createFromAscii( "com.sun.star.office.Quickstart" 
)),UNO_QUERY );
    if ( xQuickstart.is() )
        xQuickstart->initialize( aSeq );

Frank / Oliver - that most likely explains your experience of it defaulting to
'on' :-)

It also explains why we never see the problem - we axe the migraton /
registration dialog comepletely.

I guess the most simple, low impact & obvious fix is to #ifndef UNX around the
enableQuickStart, but anyhow - at least I can now test a better fix.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to