Tag: cws_src680_dba23c User: fs Date: 2007-07-19 06:06:47+0000 Modified: dba/dbaccess/source/ui/browser/brwctrlr.cxx
Log: 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.99.12.1 Delta lines: +8 -4 ------------------- --- brwctrlr.cxx 2007-07-06 08:02:38+0000 1.99 +++ brwctrlr.cxx 2007-07-19 06:06:44+0000 1.99.12.1 @@ -4,9 +4,9 @@ * * $RCSfile: brwctrlr.cxx,v $ * - * $Revision: 1.99 $ + * $Revision: 1.99.12.1 $ * - * last change: $Author: rt $ $Date: 2007/07/06 08:02:38 $ + * last change: $Author: fs $ $Date: 2007/07/19 06:06:44 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -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]
