summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/relationdesign/RelationController.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-01 09:53:24 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 09:17:47 +0200
commit8d6a99f67edc3be61f1294f963c3bbbd2b7344f6 (patch)
tree821b205fa3e96d0f6478dbd3c8de6d36cad83a1d /dbaccess/source/ui/relationdesign/RelationController.cxx
parent0a1cc7826beade023be930ac966a465c11819d55 (diff)
dbaccess: sal_Bool->bool
Change-Id: Ida8ee14bb6350fad815d741ca7a2b7db04a8ed11
Diffstat (limited to 'dbaccess/source/ui/relationdesign/RelationController.cxx')
-rw-r--r--dbaccess/source/ui/relationdesign/RelationController.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/relationdesign/RelationController.cxx b/dbaccess/source/ui/relationdesign/RelationController.cxx
index 3b3b5f564d44..22a6b75dccf5 100644
--- a/dbaccess/source/ui/relationdesign/RelationController.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationController.cxx
@@ -199,7 +199,7 @@ void ORelationController::impl_initialize()
if( !getSdbMetaData().supportsRelations() )
{// check if this database supports relations
- setEditable(sal_False);
+ setEditable(false);
m_bRelationsPossible = sal_False;
{
OUString sTitle(ModuleRes(STR_RELATIONDESIGN));
@@ -242,11 +242,11 @@ OUString ORelationController::getPrivateTitle( ) const
return ::dbaui::getStrippedDatabaseName(getDataSource(),sName);
}
-sal_Bool ORelationController::Construct(Window* pParent)
+bool ORelationController::Construct(Window* pParent)
{
setView( * new ORelationDesignView( pParent, *this, getORB() ) );
OJoinController::Construct(pParent);
- return sal_True;
+ return true;
}
short ORelationController::saveModified()