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
30f2fa98
Kaydet (Commit)
30f2fa98
authored
Haz 03, 2013
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
move these two variables from member variables to normal variables
Change-Id: Ie57cf12a3dc0984367c34dc4f52fd00036cf3d9d
üst
ebd70ae1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
xmlrowi.cxx
sc/source/filter/xml/xmlrowi.cxx
+2
-4
xmlrowi.hxx
sc/source/filter/xml/xmlrowi.hxx
+3
-4
No files found.
sc/source/filter/xml/xmlrowi.cxx
Dosyayı görüntüle @
30f2fa98
...
...
@@ -221,9 +221,7 @@ ScXMLTableRowsContext::ScXMLTableRowsContext( ScXMLImport& rImport,
const
bool
bTempHeader
,
const
bool
bTempGroup
)
:
SvXMLImportContext
(
rImport
,
nPrfx
,
rLName
),
nHeaderStartRow
(
0
),
nHeaderEndRow
(
0
),
nGroupStartRow
(
0
),
nGroupEndRow
(
0
),
bHeader
(
bTempHeader
),
bGroup
(
bTempGroup
),
bGroupDisplay
(
true
)
...
...
@@ -302,7 +300,7 @@ void ScXMLTableRowsContext::EndElement()
ScXMLImport
&
rXMLImport
(
GetScImport
());
if
(
bHeader
)
{
nHeaderEndRow
=
rXMLImport
.
GetTables
().
GetCurrentRow
();
SCROW
nHeaderEndRow
=
rXMLImport
.
GetTables
().
GetCurrentRow
();
if
(
nHeaderStartRow
<=
nHeaderEndRow
)
{
uno
::
Reference
<
sheet
::
XPrintAreas
>
xPrintAreas
(
rXMLImport
.
GetTables
().
GetCurrentXSheet
(),
uno
::
UNO_QUERY
);
...
...
@@ -327,7 +325,7 @@ void ScXMLTableRowsContext::EndElement()
}
else
if
(
bGroup
)
{
nGroupEndRow
=
rXMLImport
.
GetTables
().
GetCurrentRow
();
SCROW
nGroupEndRow
=
rXMLImport
.
GetTables
().
GetCurrentRow
();
SCTAB
nSheet
(
rXMLImport
.
GetTables
().
GetCurrentSheet
());
if
(
nGroupStartRow
<=
nGroupEndRow
)
{
...
...
sc/source/filter/xml/xmlrowi.hxx
Dosyayı görüntüle @
30f2fa98
...
...
@@ -21,6 +21,7 @@
#include <xmloff/xmlictxt.hxx>
#include <xmloff/xmlimp.hxx>
#include "address.hxx"
class
ScXMLImport
;
...
...
@@ -53,10 +54,8 @@ public:
class
ScXMLTableRowsContext
:
public
SvXMLImportContext
{
sal_Int32
nHeaderStartRow
;
sal_Int32
nHeaderEndRow
;
sal_Int32
nGroupStartRow
;
sal_Int32
nGroupEndRow
;
SCROW
nHeaderStartRow
;
SCROW
nGroupStartRow
;
bool
bHeader
;
bool
bGroup
;
bool
bGroupDisplay
;
...
...
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