summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/relationdesign
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/relationdesign')
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnection.cxx2
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnectionData.cxx2
-rw-r--r--dbaccess/source/ui/relationdesign/RelationTableView.cxx6
3 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/relationdesign/RTableConnection.cxx b/dbaccess/source/ui/relationdesign/RTableConnection.cxx
index 35cc2e16d8f7..35d9798f17f5 100644
--- a/dbaccess/source/ui/relationdesign/RTableConnection.cxx
+++ b/dbaccess/source/ui/relationdesign/RTableConnection.cxx
@@ -60,7 +60,7 @@ void ORelationTableConnection::Draw(vcl::RenderContext& rRenderContext, const Re
long nTop = GetBoundingRect().Bottom();
long nTemp;
- const OConnectionLine* pTopLine = NULL;
+ const OConnectionLine* pTopLine = nullptr;
const ::std::vector<OConnectionLine*>& rConnLineList = GetConnLineList();
std::vector<OConnectionLine*>::const_iterator aIter = rConnLineList.begin();
std::vector<OConnectionLine*>::const_iterator aEnd = rConnLineList.end();
diff --git a/dbaccess/source/ui/relationdesign/RTableConnectionData.cxx b/dbaccess/source/ui/relationdesign/RTableConnectionData.cxx
index 9cc424a45826..87dba9402cb4 100644
--- a/dbaccess/source/ui/relationdesign/RTableConnectionData.cxx
+++ b/dbaccess/source/ui/relationdesign/RTableConnectionData.cxx
@@ -379,7 +379,7 @@ xKey.clear();
{
DropRelation();
OUString sError(ModuleRes(STR_QUERY_REL_COULD_NOT_CREATE));
- ::dbtools::throwGenericSQLException(sError,NULL);
+ ::dbtools::throwGenericSQLException(sError,nullptr);
}
// The fields the relation marks may not be the same as our LineDatas mark after the relation has been updated
diff --git a/dbaccess/source/ui/relationdesign/RelationTableView.cxx b/dbaccess/source/ui/relationdesign/RelationTableView.cxx
index 81b3a2a6dccf..97a5402b7534 100644
--- a/dbaccess/source/ui/relationdesign/RelationTableView.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationTableView.cxx
@@ -64,7 +64,7 @@ using namespace ::com::sun::star::accessibility;
ORelationTableView::ORelationTableView( vcl::Window* pParent, ORelationDesignView* pView )
:OJoinTableView( pParent, pView )
, ::comphelper::OContainerListener(m_aMutex)
- ,m_pExistingConnection(NULL)
+ ,m_pExistingConnection(nullptr)
,m_bInRemove(false)
{
@@ -288,7 +288,7 @@ void ORelationTableView::AddTabWin(const OUString& _rComposedName, const OUStrin
if(aIter != GetTabWinMap().end())
{
- aIter->second->SetZOrder(NULL, ZOrderFlags::First);
+ aIter->second->SetZOrder(nullptr, ZOrderFlags::First);
aIter->second->GrabFocus();
EnsureVisible(aIter->second);
// no new one
@@ -360,7 +360,7 @@ void ORelationTableView::lookForUiActivities()
ConnDoubleClicked(m_pExistingConnection);
m_pCurrentlyTabConnData.reset();
}
- m_pExistingConnection = NULL;
+ m_pExistingConnection = nullptr;
}
if(m_pCurrentlyTabConnData)
{