diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-08-17 23:43:14 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-08-27 16:11:09 +0000 |
commit | 2ec606730bc95b58390a609df0a88958869a4066 (patch) | |
tree | 9c530b3f6b200305ba224dda2d02c9bf5aca2233 /dbaccess/source/ui/querydesign/JoinDesignView.cxx | |
parent | 434f3c8e7fac0644cfe1d7a15f97f0c267bac048 (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/querydesign/JoinDesignView.cxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/JoinDesignView.cxx | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/dbaccess/source/ui/querydesign/JoinDesignView.cxx b/dbaccess/source/ui/querydesign/JoinDesignView.cxx index b5d0c440cd30..31dd26d43b54 100644 --- a/dbaccess/source/ui/querydesign/JoinDesignView.cxx +++ b/dbaccess/source/ui/querydesign/JoinDesignView.cxx @@ -49,10 +49,7 @@ using namespace ::com::sun::star::util; namespace dbaui { -// ============================================================================= -// = OJoinDesignView -// ============================================================================= -// ----------------------------------------------------------------------------- +// OJoinDesignView OJoinDesignView::OJoinDesignView(Window* _pParent, OJoinController& _rController,const Reference< XComponentContext >& _rxContext) :ODataView( _pParent, _rController, _rxContext ) ,m_pTableView(NULL) @@ -60,7 +57,7 @@ OJoinDesignView::OJoinDesignView(Window* _pParent, OJoinController& _rController { m_pScrollWindow = new OScrollWindowHelper(this); } -// ----------------------------------------------------------------------------- + OJoinDesignView::~OJoinDesignView() { SAL_WNODEPRECATED_DECLARATIONS_PUSH @@ -72,7 +69,7 @@ OJoinDesignView::~OJoinDesignView() SAL_WNODEPRECATED_DECLARATIONS_POP m_pTableView = NULL; } -// ------------------------------------------------------------------------- + void OJoinDesignView::Construct() { m_pScrollWindow->setTableView(m_pTableView); @@ -83,11 +80,11 @@ void OJoinDesignView::Construct() ODataView::Construct(); } -// ----------------------------------------------------------------------------- + void OJoinDesignView::initialize() { } -// ------------------------------------------------------------------------- + void OJoinDesignView::resizeDocumentView(Rectangle& _rPlayground) { m_pScrollWindow->SetPosSizePixel( _rPlayground.TopLeft(), _rPlayground.GetSize() ); @@ -96,16 +93,16 @@ void OJoinDesignView::resizeDocumentView(Rectangle& _rPlayground) _rPlayground.SetPos( _rPlayground.BottomRight() ); _rPlayground.SetSize( Size( 0, 0 ) ); } -// ----------------------------------------------------------------------------- + void OJoinDesignView::setReadOnly(sal_Bool /*_bReadOnly*/) { } -// ----------------------------------------------------------------------------- + void OJoinDesignView::SaveTabWinUIConfig(OTableWindow* pWin) { getController().SaveTabWinPosSize(pWin, m_pScrollWindow->GetHScrollBar()->GetThumbPos(), m_pScrollWindow->GetVScrollBar()->GetThumbPos()); } -// ----------------------------------------------------------------------------- + void OJoinDesignView::KeyInput( const KeyEvent& rEvt ) { if ( m_pTableView && m_pTableView->IsVisible() ) @@ -113,7 +110,6 @@ void OJoinDesignView::KeyInput( const KeyEvent& rEvt ) else ODataView::KeyInput(rEvt); } -// ----------------------------------------------------------------------------- } // namespace dbaui |