removetooltypes01: #i112600# Replace missing tools types replacement
This commit is contained in:
parent
9d03441ed0
commit
3f3abe3a15
2 changed files with 4 additions and 4 deletions
|
@ -226,7 +226,7 @@ DBG_NAME(OConnectionHelper)
|
|||
m_aConnectionURL.Show();
|
||||
m_aConnectionURL.ShowPrefix( ::dbaccess::DST_JDBC == m_pCollection->determineType(m_eType) );
|
||||
|
||||
BOOL bEnableBrowseButton = m_pCollection->supportsBrowsing( m_eType );
|
||||
sal_Bool bEnableBrowseButton = m_pCollection->supportsBrowsing( m_eType );
|
||||
m_aPB_Connection.Show( bEnableBrowseButton );
|
||||
|
||||
SFX_ITEMSET_GET(_rSet, pUrlItem, SfxStringItem, DSID_CONNECTURL, sal_True);
|
||||
|
|
|
@ -346,7 +346,7 @@ namespace dbaui
|
|||
String sUrl = pUrlItem->GetValue();
|
||||
setURL( sUrl );
|
||||
|
||||
const BOOL bEnableJDBC = m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC;
|
||||
const sal_Bool bEnableJDBC = m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC;
|
||||
if ( !pJdbcDrvItem->GetValue().Len() )
|
||||
{
|
||||
String sDefaultJdbcDriverName = m_pCollection->getJavaDriverClass(m_eType);
|
||||
|
@ -436,7 +436,7 @@ namespace dbaui
|
|||
{
|
||||
}
|
||||
|
||||
USHORT nMessage = bSuccess ? STR_JDBCDRIVER_SUCCESS : STR_JDBCDRIVER_NO_SUCCESS;
|
||||
sal_uInt16 nMessage = bSuccess ? STR_JDBCDRIVER_SUCCESS : STR_JDBCDRIVER_NO_SUCCESS;
|
||||
OSQLMessageBox aMsg( this, String( ModuleRes( nMessage ) ), String() );
|
||||
aMsg.Execute();
|
||||
return 0L;
|
||||
|
@ -445,7 +445,7 @@ namespace dbaui
|
|||
bool OConnectionTabPage::checkTestConnection()
|
||||
{
|
||||
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
||||
BOOL bEnableTestConnection = !m_aConnectionURL.IsVisible() || (m_aConnectionURL.GetTextNoPrefix().Len() != 0);
|
||||
sal_Bool bEnableTestConnection = !m_aConnectionURL.IsVisible() || (m_aConnectionURL.GetTextNoPrefix().Len() != 0);
|
||||
if ( m_pCollection->determineType(m_eType) == ::dbaccess::DST_JDBC )
|
||||
bEnableTestConnection = bEnableTestConnection && (m_aJavaDriver.GetText().Len() != 0);
|
||||
m_aTestConnection.Enable(bEnableTestConnection);
|
||||
|
|
Loading…
Reference in a new issue