diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
commit | e8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch) | |
tree | dae18a3acbf29c192118e7c003f80df8da8e21ae /sw/source/ui/dbui/dbinsdlg.cxx | |
parent | 1c8402465cfd4df862409dc310f5f099d044c4d8 (diff) |
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'sw/source/ui/dbui/dbinsdlg.cxx')
-rw-r--r-- | sw/source/ui/dbui/dbinsdlg.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/ui/dbui/dbinsdlg.cxx b/sw/source/ui/dbui/dbinsdlg.cxx index fdb7bc8069d4..bd5b36392a18 100644 --- a/sw/source/ui/dbui/dbinsdlg.cxx +++ b/sw/source/ui/dbui/dbinsdlg.cxx @@ -354,13 +354,13 @@ SwInsertDBColAutoPilot::SwInsertDBColAutoPilot( SwView& rView, if( pView->GetWrtShell().GetTableFmt() ) { m_pRbAsTable->Enable( false ); - m_pRbAsField->Check( sal_True ); - m_pRbDbFmtFromDb->Check( sal_True ); + m_pRbAsField->Check( true ); + m_pRbDbFmtFromDb->Check( true ); } else { - m_pRbAsTable->Check( sal_True ); - m_pRbDbFmtFromDb->Check( sal_True ); + m_pRbAsTable->Check( true ); + m_pRbDbFmtFromDb->Check( true ); m_pIbDbcolOneFrom->Enable( false ); m_pIbDbcolAllFrom->Enable( false ); } @@ -475,8 +475,8 @@ IMPL_LINK( SwInsertDBColAutoPilot, DBFormatHdl, Button*, pButton ) IMPL_LINK( SwInsertDBColAutoPilot, TblToFromHdl, Button*, pButton ) { sal_Bool bChgEnable = sal_True, bEnableTo = sal_True, bEnableFrom = sal_True; - m_pLbTblDbColumn->SetUpdateMode( sal_False ); - m_pLbTableCol->SetUpdateMode( sal_False ); + m_pLbTblDbColumn->SetUpdateMode( false ); + m_pLbTableCol->SetUpdateMode( false ); if( pButton == m_pIbDbcolAllTo ) { @@ -612,8 +612,8 @@ IMPL_LINK( SwInsertDBColAutoPilot, TblToFromHdl, Button*, pButton ) m_pPbTblFormat->Enable( bEnableFrom ); } - m_pLbTblDbColumn->SetUpdateMode( sal_True ); - m_pLbTableCol->SetUpdateMode( sal_True ); + m_pLbTblDbColumn->SetUpdateMode( true ); + m_pLbTableCol->SetUpdateMode( true ); return 0; } @@ -1820,7 +1820,7 @@ void SwInsertDBColAutoPilot::Load() // when the cursor is inside of a table, table must NEVER be selectable if( !m_pRbAsTable->IsEnabled() && m_pRbAsTable->IsChecked() ) - m_pRbAsField->Check( sal_True ); + m_pRbAsField->Check( true ); delete pNewData; break; } |