summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/WCPage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/misc/WCPage.cxx')
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx
index 608956e5176d..da553dbe4a63 100644
--- a/dbaccess/source/ui/misc/WCPage.cxx
+++ b/dbaccess/source/ui/misc/WCPage.cxx
@@ -76,7 +76,7 @@ OCopyTable::OCopyTable( Window * pParent )
if ( !m_pParent->supportsViews() )
m_aRB_View.Disable();
- m_aCB_UseHeaderLine.Check(sal_True);
+ m_aCB_UseHeaderLine.Check(true);
m_bPKeyAllowed = m_pParent->supportsPrimaryKey();
m_aCB_PrimaryColumn.Enable(m_bPKeyAllowed);
@@ -326,26 +326,26 @@ void OCopyTable::setCreateStyleAction()
switch(m_pParent->getOperation())
{
case CopyTableOperation::CopyDefinitionAndData:
- m_aRB_DefData.Check(sal_True);
+ m_aRB_DefData.Check(true);
RadioChangeHdl(&m_aRB_DefData);
break;
case CopyTableOperation::CopyDefinitionOnly:
- m_aRB_Def.Check(sal_True);
+ m_aRB_Def.Check(true);
RadioChangeHdl(&m_aRB_Def);
break;
case CopyTableOperation::AppendData:
- m_aRB_AppendData.Check(sal_True);
+ m_aRB_AppendData.Check(true);
SetAppendDataRadio();
break;
case CopyTableOperation::CreateAsView:
if ( m_aRB_View.IsEnabled() )
{
- m_aRB_View.Check(sal_True);
+ m_aRB_View.Check(true);
RadioChangeHdl(&m_aRB_View);
}
else
{
- m_aRB_DefData.Check(sal_True);
+ m_aRB_DefData.Check(true);
RadioChangeHdl(&m_aRB_DefData);
}
}