diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:12:15 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:12:15 +0000 |
commit | 6b2fd4bebd263ef13b9b610d20f6563b78f9e079 (patch) | |
tree | 46ae34b7b487175f61091ac11405eb2d57623b12 /dbaccess/source/ui/inc/JoinTableView.hxx | |
parent | 6802e50735237f7a7737e10e8fc4c17e8c40752b (diff) |
INTEGRATION: CWS warnings01 (1.23.48); FILE MERGED
2006/03/24 15:36:15 fs 1.23.48.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
Diffstat (limited to 'dbaccess/source/ui/inc/JoinTableView.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/JoinTableView.hxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx b/dbaccess/source/ui/inc/JoinTableView.hxx index d4cbe5396721..0545f1d39692 100644 --- a/dbaccess/source/ui/inc/JoinTableView.hxx +++ b/dbaccess/source/ui/inc/JoinTableView.hxx @@ -4,9 +4,9 @@ * * $RCSfile: JoinTableView.hxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: rt $ $Date: 2005-09-08 15:29:33 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:12:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -162,7 +162,7 @@ namespace dbaui // alle TabWins verstecken (NICHT loeschen, sie werden in eine Undo-Action gepackt) virtual void HideTabWins(); - virtual void AddConnection(const OJoinExchangeData& jxdSource, const OJoinExchangeData& jxdDest); + virtual void AddConnection(const OJoinExchangeData& jxdSource, const OJoinExchangeData& jxdDest) = 0; /** RemoveConnection allows to remove connections from join table view, it implies that the same as addConnection @@ -184,12 +184,12 @@ namespace dbaui */ void addConnection(OTableConnection* _pConnection,sal_Bool _bAddData = sal_True); - BOOL Scroll( long nDelta, BOOL bHoriz, BOOL bPaintScrollBars ); + BOOL ScrollPane( long nDelta, BOOL bHoriz, BOOL bPaintScrollBars ); ULONG GetTabWinCount(); Point GetScrollOffset() const { return m_aScrollOffset; } OJoinDesignView* getDesignView() const { return m_pView; } - OTableWindow* GetWindow( const String& rName ); + OTableWindow* GetTabWindow( const String& rName ); OTableConnection* GetSelectedConn() { return m_pSelectedConn; } void DeselectConn(OTableConnection* pConn); // NULL ist ausdruecklich zugelassen, dann passiert nichts @@ -319,6 +319,9 @@ namespace dbaui @param _pAction a possible undo action to add at the controller */ void invalidateAndModify(SfxUndoAction *_pAction=NULL); + + private: + using Window::Scroll; }; } #endif // DBAUI_JOINTABLEVIEW_HXX |