User: hr Date: 2007-07-31 14:01:32+0000 Modified: dba/dbaccess/source/ui/browser/brwctrlr.cxx
Log: INTEGRATION: CWS dba23c (1.99.12); FILE MERGED 2007/07/19 06:06:44 fs 1.99.12.1: during #i79679#: signature of CreateFmSearchDialog changed File Changes: Directory: /dba/dbaccess/source/ui/browser/ =========================================== File [changed]: brwctrlr.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/browser/brwctrlr.cxx?r1=1.99&r2=1.100 Delta lines: +5 -1 ------------------- --- brwctrlr.cxx 2007-07-06 08:02:38+0000 1.99 +++ brwctrlr.cxx 2007-07-31 14:01:29+0000 1.100 @@ -1793,7 +1793,11 @@ SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); AbstractFmSearchDialog* pDialog = NULL; if ( pFact ) - pDialog = pFact->CreateFmSearchDialog(getBrowserView(), sInitialText, String::CreateFromAscii("Standard"), 0, LINK(this, SbaXDataBrowserController, OnSearchContextRequest),SM_ALLOWSCHEDULE); + { + ::std::vector< String > aContextNames; + aContextNames.push_back( String::CreateFromAscii("Standard") ); + pDialog = pFact->CreateFmSearchDialog(getBrowserView(), sInitialText, aContextNames, 0, LINK(this, SbaXDataBrowserController, OnSearchContextRequest)); + } DBG_ASSERT( pDialog, "SbaXDataBrowserController::ExecuteSearch: could not get the search dialog!" ); if ( pDialog ) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
