User: ihi Date: 2006/08/28 08:07:20 Modified: dba/dbaccess/source/ui/dlg/dlgsave.cxx
Log: INTEGRATION: CWS dba205a (1.29.6); FILE MERGED 2006/08/22 07:09:52 oj 1.29.6.1: #i67014# correct table name File Changes: Directory: /dba/dbaccess/source/ui/dlg/ ======================================= File [changed]: dlgsave.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/dlg/dlgsave.cxx?r1=1.29&r2=1.30 Delta lines: +6 -6 ------------------- --- dlgsave.cxx 26 Jul 2006 07:48:02 -0000 1.29 +++ dlgsave.cxx 28 Aug 2006 15:07:18 -0000 1.30 @@ -200,21 +200,21 @@ &XDatabaseMetaData::getSchemas, m_xMetaData->getUserName() ); } - ::rtl::OUString sCatalog,sSchema,sTable; + ::rtl::OUString sTable; ::dbtools::qualifiedNameComponents( m_xMetaData, m_aName, - sCatalog, - sSchema, + m_sCatalog, + m_sSchema, sTable, ::dbtools::eInDataManipulation); - USHORT nPos = m_aCatalog.GetEntryPos( String( sCatalog ) ); + USHORT nPos = m_aCatalog.GetEntryPos( String( m_sCatalog ) ); if ( nPos != COMBOBOX_ENTRY_NOTFOUND ) m_aCatalog.SelectEntryPos( nPos ); - if ( sSchema.getLength() ) + if ( m_sSchema.getLength() ) { - nPos = m_aSchema.GetEntryPos( String( sSchema ) ); + nPos = m_aSchema.GetEntryPos( String( m_sSchema ) ); if ( nPos != COMBOBOX_ENTRY_NOTFOUND ) m_aSchema.SelectEntryPos( nPos ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
