Kaydet (Commit) 5ffdd780 authored tarafından Philipp Riemer's avatar Philipp Riemer

change indentation

This is a follow-up patch of 401a454c.

Change-Id: Idf2c7da3e449dec1afcc0aa3683ea46c6172420a
üst 6d29ad0d
...@@ -181,8 +181,8 @@ namespace dbaui ...@@ -181,8 +181,8 @@ namespace dbaui
*/ */
const ::std::vector<OTableConnection*>* getTableConnections() const { return &m_vTableConnection; } const ::std::vector<OTableConnection*>* getTableConnections() const { return &m_vTableConnection; }
sal_Bool ExistsAConn(const OTableWindow* pFromWin) const; sal_Bool ExistsAConn(const OTableWindow* pFromWin) const;
/** search for all connections of a table /** search for all connections of a table
@param _pFromWin the table for which connections should be found @param _pFromWin the table for which connections should be found
......
...@@ -34,8 +34,7 @@ namespace dbaui ...@@ -34,8 +34,7 @@ namespace dbaui
{ {
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
::rtl::Reference< comphelper::OContainerListenerAdapter> ::rtl::Reference< comphelper::OContainerListenerAdapter> m_pContainerListener;
m_pContainerListener;
bool m_bInRemove; bool m_bInRemove;
virtual void ConnDoubleClicked( OTableConnection* pConnection ); virtual void ConnDoubleClicked( OTableConnection* pConnection );
......
...@@ -77,24 +77,23 @@ namespace dbaui ...@@ -77,24 +77,23 @@ namespace dbaui
sal_Bool IsVisible() const { return m_bVisible;} sal_Bool IsVisible() const { return m_bVisible;}
sal_Bool IsGroupBy() const { return m_bGroupBy;} sal_Bool IsGroupBy() const { return m_bGroupBy;}
void SetVisible( sal_Bool bVis=sal_True ){ m_bVisible = bVis;} void SetVisible( sal_Bool bVis=sal_True ) { m_bVisible = bVis; }
void SetGroupBy( sal_Bool bGb=sal_False ){ m_bGroupBy = bGb;} void SetGroupBy( sal_Bool bGb=sal_False ) { m_bGroupBy = bGb; }
void SetTabWindow( Window* pWin ){ m_pTabWindow = pWin;} void SetTabWindow( Window* pWin ){ m_pTabWindow = pWin; }
void SetField( const ::rtl::OUString& rF ){ m_aFieldName = rF;} void SetField( const ::rtl::OUString& rF ) { m_aFieldName = rF; }
void SetFieldAlias( const ::rtl::OUString& rF ){ m_aFieldAlias = rF;} void SetFieldAlias( const ::rtl::OUString& rF ) { m_aFieldAlias = rF; }
void SetTable( const ::rtl::OUString& rT ){ m_aTableName = rT;} void SetTable( const ::rtl::OUString& rT ) { m_aTableName = rT; }
void SetAlias( const ::rtl::OUString& rT ){ m_aAliasName = rT;} void SetAlias( const ::rtl::OUString& rT ) { m_aAliasName = rT; }
void SetFunction( const ::rtl::OUString& rT ) { m_aFunctionName = rT;} void SetFunction( const ::rtl::OUString& rT ) { m_aFunctionName = rT; }
void SetOrderDir( EOrderDir eDir ) { m_eOrderDir = eDir; } void SetOrderDir( EOrderDir eDir ) { m_eOrderDir = eDir; }
void SetDataType( sal_Int32 eTyp ) { m_eDataType = eTyp; } void SetDataType( sal_Int32 eTyp ) { m_eDataType = eTyp; }
void SetFieldType( ETableFieldType eTyp ) { m_eFieldType = eTyp; } void SetFieldType( ETableFieldType eTyp ) { m_eFieldType = eTyp; }
void SetCriteria( sal_uInt16 nIdx, const ::rtl::OUString& rCrit); void SetCriteria( sal_uInt16 nIdx, const ::rtl::OUString& rCrit );
void SetColWidth( sal_Int32 nWidth ) { m_nColWidth = nWidth; } void SetColWidth( sal_Int32 nWidth ) { m_nColWidth = nWidth; }
void SetFieldIndex( sal_Int32 nFieldIndex ) { m_nIndex = nFieldIndex; } void SetFieldIndex( sal_Int32 nFieldIndex ) { m_nIndex = nFieldIndex; }
void SetFunctionType( sal_Int32 eTyp ) { m_eFunctionType = eTyp; } void SetFunctionType( sal_Int32 eTyp ) { m_eFunctionType = eTyp; }
void SetColumnId(sal_uInt16 _nColumnId) { m_nColumnId = _nColumnId; } void SetColumnId(sal_uInt16 _nColumnId) { m_nColumnId = _nColumnId; }
::rtl::OUString GetField() const { return m_aFieldName;} ::rtl::OUString GetField() const { return m_aFieldName;}
::rtl::OUString GetFieldAlias() const { return m_aFieldAlias;} ::rtl::OUString GetFieldAlias() const { return m_aFieldAlias;}
::rtl::OUString GetTable() const { return m_aTableName;} ::rtl::OUString GetTable() const { return m_aTableName;}
......
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