diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-01-27 12:11:39 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-01-27 12:11:39 +0100 |
commit | 8aecc9566fe61fe20ae0bb49cb03550efff7f16b (patch) | |
tree | 7bf32f9d0d75b3d9472107dfcf71c7fdf35c0ea0 /dbaccess/source/ui/app/AppController.cxx | |
parent | d52c2a9996d8d37ee80c598439a7b8cb73bba8ba (diff) |
autorecovery: renamed local var shadowing another local var (GCC warning)
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r-- | dbaccess/source/ui/app/AppController.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index e80594cb4..6afb3ed76 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -1392,11 +1392,11 @@ void OApplicationController::Execute(sal_uInt16 _nId, const Sequence< PropertyVa { QueryDesigner aDesigner( getORB(), this, getFrame(), true ); - ::comphelper::NamedValueCollection aArgs; - aArgs.put( (::rtl::OUString)PROPERTY_GRAPHICAL_DESIGN, ID_NEW_VIEW_DESIGN == _nId ); + ::comphelper::NamedValueCollection aCreationArgs; + aCreationArgs.put( (::rtl::OUString)PROPERTY_GRAPHICAL_DESIGN, ID_NEW_VIEW_DESIGN == _nId ); Reference< XDataSource > xDataSource( m_xDataSource, UNO_QUERY ); - Reference< XComponent > xComponent( aDesigner.createNew( xDataSource, aArgs ), UNO_QUERY ); + Reference< XComponent > xComponent( aDesigner.createNew( xDataSource, aCreationArgs ), UNO_QUERY ); onDocumentOpened( ::rtl::OUString(), E_QUERY, E_OPEN_DESIGN, xComponent, NULL ); } } |