Kaydet (Commit) 6d29ad0d authored tarafından Philipp Riemer's avatar Philipp Riemer

align code pieces to surrounding lines/style

Change-Id: I992fd490461ba499cba1007abd57285949d3a488
üst c47988fc
...@@ -31,9 +31,7 @@ namespace dbaui ...@@ -31,9 +31,7 @@ namespace dbaui
// OJoinExchObj: Additional data to create Joins in the JoinShell // OJoinExchObj: Additional data to create Joins in the JoinShell
typedef ::cppu::ImplHelper1< ::com::sun::star::lang::XUnoTunnel > OJoinExchObj_Base; typedef ::cppu::ImplHelper1< ::com::sun::star::lang::XUnoTunnel > OJoinExchObj_Base;
class OJoinExchObj class OJoinExchObj : public TransferableHelper, public OJoinExchObj_Base
:public TransferableHelper
,public OJoinExchObj_Base
{ {
static String m_sJoinFormat; static String m_sJoinFormat;
sal_Bool m_bFirstEntry; sal_Bool m_bFirstEntry;
......
...@@ -72,9 +72,9 @@ namespace dbaui ...@@ -72,9 +72,9 @@ namespace dbaui
}; };
class OJoinTableView : public Window class OJoinTableView : public Window,
,public IDragTransferableListener public IDragTransferableListener,
,public DropTargetHelper public DropTargetHelper
{ {
friend class OJoinMoveTabWinUndoAct; friend class OJoinMoveTabWinUndoAct;
......
...@@ -27,9 +27,10 @@ ...@@ -27,9 +27,10 @@
namespace dbaui namespace dbaui
{ {
class ORelationDesignView; class ORelationDesignView;
class ORelationTableView : public ::cppu::BaseMutex
, public OJoinTableView class ORelationTableView : public ::cppu::BaseMutex,
, public ::comphelper::OContainerListener public OJoinTableView,
public ::comphelper::OContainerListener
{ {
OTableConnection* m_pExistingConnection; ///< is set when a connection was draged on an existing connection OTableConnection* m_pExistingConnection; ///< is set when a connection was draged on an existing connection
TTableConnectionData::value_type m_pCurrentlyTabConnData; ///< set when we creating a connection with more than one keycolumn TTableConnectionData::value_type m_pCurrentlyTabConnData; ///< set when we creating a connection with more than one keycolumn
......
...@@ -53,7 +53,9 @@ namespace dbaui ...@@ -53,7 +53,9 @@ namespace dbaui
OTableConnectionData& operator=( const OTableConnectionData& rConnData ); OTableConnectionData& operator=( const OTableConnectionData& rConnData );
public: public:
OTableConnectionData(); OTableConnectionData();
OTableConnectionData(const TTableWindowData::value_type& _pReferencingTable,const TTableWindowData::value_type& _pReferencedTable, const String& rConnName = String() ); OTableConnectionData( const TTableWindowData::value_type& _pReferencingTable,
const TTableWindowData::value_type& _pReferencedTable,
const String& rConnName = String() );
OTableConnectionData( const OTableConnectionData& rConnData ); OTableConnectionData( const OTableConnectionData& rConnData );
virtual ~OTableConnectionData(); virtual ~OTableConnectionData();
......
...@@ -29,8 +29,7 @@ namespace dbaui ...@@ -29,8 +29,7 @@ namespace dbaui
{ {
class OTableDesignView; class OTableDesignView;
class OTableRowView : public ::svt::EditBrowseBox class OTableRowView : public ::svt::EditBrowseBox, public IClipboardTest
,public IClipboardTest
{ {
friend class OTableDesignUndoAct; friend class OTableDesignUndoAct;
......
...@@ -30,8 +30,7 @@ namespace dbaui ...@@ -30,8 +30,7 @@ namespace dbaui
{ {
// Deriving from TabPage is a trick to notice changes // Deriving from TabPage is a trick to notice changes
// of the system colors // of the system colors
class OTableDesignHelpBar : public TabPage class OTableDesignHelpBar : public TabPage, public IClipboardTest
,public IClipboardTest
{ {
private: private:
String m_sHelpText; String m_sHelpText;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment