diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-08-19 06:32:53 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-08-19 06:32:53 +0000 |
commit | 2811203172a92ea16b02eb449243429b708c0379 (patch) | |
tree | 9a2b77ce7288c9d0a1e23ccf7801028d47f773c3 /dbaccess/source/ui/inc/TableFieldDescription.hxx | |
parent | 31e31b049cc37d4bf08869fa17a44e40a85fafd4 (diff) |
#99473# change string resource files
Diffstat (limited to 'dbaccess/source/ui/inc/TableFieldDescription.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/TableFieldDescription.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/TableFieldDescription.hxx b/dbaccess/source/ui/inc/TableFieldDescription.hxx index 9f424b7810ec..d94e608dac42 100644 --- a/dbaccess/source/ui/inc/TableFieldDescription.hxx +++ b/dbaccess/source/ui/inc/TableFieldDescription.hxx @@ -2,9 +2,9 @@ * * $RCSfile: TableFieldDescription.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: oj $ $Date: 2001-10-05 06:49:45 $ + * last change: $Author: oj $ $Date: 2002-08-19 07:28:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -104,6 +104,7 @@ namespace dbaui EOrderDir m_eOrderDir; sal_Int32 m_nIndex; sal_Int32 m_nColWidth; + sal_uInt16 m_nColumnId; sal_Bool m_bGroupBy; sal_Bool m_bVisible; @@ -139,6 +140,8 @@ namespace dbaui void SetColWidth( sal_Int32 nWidth ) { m_nColWidth = nWidth; } void SetFieldIndex( sal_Int32 nFieldIndex ) { m_nIndex = nFieldIndex; } void SetFunctionType( EFunctionType eTyp ) { m_eFunctionType = eTyp; } + void SetColumnId(sal_uInt16 _nColumnId) { m_nColumnId = _nColumnId; } + ::rtl::OUString GetField() const { return m_aFieldName;} ::rtl::OUString GetFieldAlias() const { return m_aFieldAlias;} @@ -154,6 +157,7 @@ namespace dbaui sal_Int32 GetFieldIndex() const { return m_nIndex; } Window* GetTabWindow() const { return m_pTabWindow;} EFunctionType GetFunctionType() const { return m_eFunctionType; } + sal_uInt16 GetColumnId() const { return m_nColumnId;} sal_Bool HasCriteria() const { |