Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
b72f5692
Kaydet (Commit)
b72f5692
authored
May 23, 2002
tarafından
Ocke Janssen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#99407# new typedef inserted
üst
ac86b75d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
17 deletions
+16
-17
DExport.hxx
dbaccess/source/ui/inc/DExport.hxx
+6
-7
HtmlReader.hxx
dbaccess/source/ui/inc/HtmlReader.hxx
+3
-3
RtfReader.hxx
dbaccess/source/ui/inc/RtfReader.hxx
+3
-3
WCopyTable.hxx
dbaccess/source/ui/inc/WCopyTable.hxx
+4
-4
No files found.
dbaccess/source/ui/inc/DExport.hxx
Dosyayı görüntüle @
b72f5692
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: DExport.hxx,v $
*
* $Revision: 1.
7
$
* $Revision: 1.
8
$
*
* last change: $Author: oj $ $Date: 2002-0
3-21 07:21:51
$
* last change: $Author: oj $ $Date: 2002-0
5-23 11:07:09
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -94,9 +94,7 @@
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#endif
#ifndef _VECTOR_
#include <vector>
#endif
#ifndef _STRING_HXX
#include <tools/string.hxx>
#endif
...
...
@@ -122,9 +120,10 @@ namespace dbaui
{
public
:
DECLARE_STL_MAP
(
::
rtl
::
OUString
,
OFieldDescription
*
,
::
comphelper
::
UStringMixLess
,
TColumns
);
typedef
::
std
::
vector
<
TColumns
::
const_iterator
>
TColumnVector
;
typedef
::
std
::
vector
<
TColumns
::
const_iterator
>
TColumnVector
;
typedef
::
std
::
vector
<
::
std
::
pair
<
sal_Int32
,
sal_Int32
>
>
TPositions
;
protected
:
::
std
::
vector
<
sal_Int32
>
m_vColumns
;
// Welche Spalten "ubernommen werden sollen
TPositions
m_vColumns
;
// Welche Spalten "ubernommen werden sollen
::
std
::
vector
<
sal_Int32
>
m_vColumnTypes
;
// FeldTypen f"ur schnelleren Zugriff
::
std
::
vector
<
sal_Int32
>
m_vColumnSize
;
::
std
::
vector
<
sal_Int32
>
m_vFormatKey
;
...
...
@@ -189,7 +188,7 @@ namespace dbaui
const
OTypeInfoMap
*
_pInfoMap
=
0
);
// wird f"ur auto. Typ-Erkennung gebraucht
ODatabaseExport
(
sal_Int32
nRows
,
const
::
std
::
vector
<
sal_Int32
>
&
_rColumnPositions
,
const
TPositions
&
_rColumnPositions
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
util
::
XNumberFormatter
>&
_rxNumberF
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
_rM
,
const
TColumnVector
*
rList
=
0
,
...
...
dbaccess/source/ui/inc/HtmlReader.hxx
Dosyayı görüntüle @
b72f5692
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: HtmlReader.hxx,v $
*
* $Revision: 1.
5
$
* $Revision: 1.
6
$
*
* last change: $Author: oj $ $Date: 2002-0
1-22 07:22:3
7 $
* last change: $Author: oj $ $Date: 2002-0
5-23 11:07:5
7 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -115,7 +115,7 @@ namespace dbaui
// wird f"ur auto. Typ-Erkennung gebraucht
OHTMLReader
(
SvStream
&
rIn
,
sal_Int32
nRows
,
const
::
std
::
vector
<
sal_Int32
>
&
_rColumnPositions
,
const
TPositions
&
_rColumnPositions
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
util
::
XNumberFormatter
>&
_rxNumberF
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
_rM
,
const
TColumnVector
*
rList
=
0
,
...
...
dbaccess/source/ui/inc/RtfReader.hxx
Dosyayı görüntüle @
b72f5692
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: RtfReader.hxx,v $
*
* $Revision: 1.
5
$
* $Revision: 1.
6
$
*
* last change: $Author: oj $ $Date: 2002-0
1-22 07:22:37
$
* last change: $Author: oj $ $Date: 2002-0
5-23 11:09:30
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -101,7 +101,7 @@ namespace dbaui
// wird f"ur auto. Typ-Erkennung gebraucht
ORTFReader
(
SvStream
&
rIn
,
sal_Int32
nRows
,
const
::
std
::
vector
<
sal_Int32
>
&
_rColumnPositions
,
const
TPositions
&
_rColumnPositions
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
util
::
XNumberFormatter
>&
_rxNumberF
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
_rM
,
const
TColumnVector
*
rList
=
0
,
...
...
dbaccess/source/ui/inc/WCopyTable.hxx
Dosyayı görüntüle @
b72f5692
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: WCopyTable.hxx,v $
*
* $Revision: 1.1
0
$
* $Revision: 1.1
1
$
*
* last change: $Author: oj $ $Date: 2002-0
3-21 07:15:30
$
* last change: $Author: oj $ $Date: 2002-0
5-23 11:10:43
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -203,7 +203,7 @@ namespace dbaui
::
std
::
vector
<
OTypeInfoMap
::
iterator
>
m_aDestTypeInfoIndex
;
TNameMapping
m_mNameMapping
;
::
std
::
vector
<
sal_Int32
>
m_vColumnPos
;
ODatabaseExport
::
TPositions
m_vColumnPos
;
::
std
::
vector
<
sal_Int32
>
m_vColumnTypes
;
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
m_xDestObject
;
// can be a query or a table
...
...
@@ -270,7 +270,7 @@ namespace dbaui
void
CheckButtons
();
// checks which button can be disabled, enabled
// returns a vector where the position of a column and if the column is in the selection
// when not the value is CONTAINER_ENTRY_NOTFOUND == (sal_uInt32)-1
::
std
::
vector
<
sal_Int32
>
GetColumnPositions
()
const
{
return
m_vColumnPos
;
}
ODatabaseExport
::
TPositions
GetColumnPositions
()
const
{
return
m_vColumnPos
;
}
::
std
::
vector
<
sal_Int32
>
GetColumnTypes
()
const
{
return
m_vColumnTypes
;
}
const
TNameMapping
*
GetNameMapping
()
const
{
return
&
m_mNameMapping
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment