summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/relationdesign/RelationDesignView.cxx
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-08-17 23:43:14 +0200
committerPetr Mladek <pmladek@suse.cz>2013-08-27 16:11:09 +0000
commit2ec606730bc95b58390a609df0a88958869a4066 (patch)
tree9c530b3f6b200305ba224dda2d02c9bf5aca2233 /dbaccess/source/ui/relationdesign/RelationDesignView.cxx
parent434f3c8e7fac0644cfe1d7a15f97f0c267bac048 (diff)
fdo#62475 removed pointless comments
Conflicts: dbaccess/source/filter/xml/xmlfilter.cxx dbaccess/source/ui/dlg/ConnectionPage.cxx dbaccess/source/ui/dlg/detailpages.cxx dbaccess/source/ui/dlg/odbcconfig.cxx dbaccess/source/ui/querydesign/querycontroller.cxx Change-Id: I3a05649efa3a43dd8d8fb069fc1bce14ca0a6338 Reviewed-on: https://gerrit.libreoffice.org/5484 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'dbaccess/source/ui/relationdesign/RelationDesignView.cxx')
-rw-r--r--dbaccess/source/ui/relationdesign/RelationDesignView.cxx17
1 files changed, 5 insertions, 12 deletions
diff --git a/dbaccess/source/ui/relationdesign/RelationDesignView.cxx b/dbaccess/source/ui/relationdesign/RelationDesignView.cxx
index 602b79323d89..9f72313c1a98 100644
--- a/dbaccess/source/ui/relationdesign/RelationDesignView.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationDesignView.cxx
@@ -51,18 +51,18 @@ ORelationDesignView::ORelationDesignView(Window* _pParent, ORelationController&
{
DBG_CTOR(ORelationDesignView,NULL);
}
-// -----------------------------------------------------------------------------
+
ORelationDesignView::~ORelationDesignView()
{
DBG_DTOR(ORelationDesignView,NULL);
}
-// -------------------------------------------------------------------------
+
void ORelationDesignView::Construct()
{
m_pTableView = new ORelationTableView(m_pScrollWindow,this);
OJoinDesignView::Construct();
}
-// -----------------------------------------------------------------------------
+
void ORelationDesignView::initialize()
{
m_pTableView->clearLayoutInformation();
@@ -70,7 +70,7 @@ void ORelationDesignView::initialize()
OJoinDesignView::initialize();
}
-// -----------------------------------------------------------------------------
+
long ORelationDesignView::PreNotify( NotifyEvent& rNEvt )
{
long nDone = 0L;
@@ -86,19 +86,12 @@ long ORelationDesignView::PreNotify( NotifyEvent& rNEvt )
nDone = OJoinDesignView::PreNotify(rNEvt);
return nDone;
}
-// -----------------------------------------------------------------------------
+
void ORelationDesignView::GetFocus()
{
OJoinDesignView::GetFocus();
if ( m_pTableView && m_pTableView->IsVisible() && !m_pTableView->GetTabWinMap()->empty() )
m_pTableView->GrabTabWinFocus();
}
-// -----------------------------------------------------------------------------
-
-
-
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */