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
2ae89f59
Kaydet (Commit)
2ae89f59
authored
May 19, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
don't use default style as parent for OOXML cond format style, tdf#91335
Change-Id: I1388bb5ab71f6f6d174872023f085240f3bff916
üst
158b5076
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
stlsheet.hxx
sc/inc/stlsheet.hxx
+3
-0
stlsheet.cxx
sc/source/core/data/stlsheet.cxx
+5
-0
stylesbuffer.cxx
sc/source/filter/oox/stylesbuffer.cxx
+5
-2
No files found.
sc/inc/stlsheet.hxx
Dosyayı görüntüle @
2ae89f59
...
...
@@ -22,6 +22,8 @@
#include <svl/style.hxx>
#include "scdllapi.h"
#define SCSTYLEBIT_STANDARD 0x0001
class
ScStyleSheetPool
;
...
...
@@ -48,6 +50,7 @@ public:
ScStyleSheet
(
const
ScStyleSheet
&
rStyle
);
virtual
bool
SetParent
(
const
OUString
&
rParentName
)
SAL_OVERRIDE
;
SC_DLLPUBLIC
void
ResetParent
();
virtual
SfxItemSet
&
GetItemSet
()
SAL_OVERRIDE
;
virtual
bool
IsUsed
()
const
SAL_OVERRIDE
;
virtual
bool
HasFollowSupport
()
const
SAL_OVERRIDE
;
...
...
sc/source/core/data/stlsheet.cxx
Dosyayı görüntüle @
2ae89f59
...
...
@@ -121,6 +121,11 @@ bool ScStyleSheet::SetParent( const OUString& rParentName )
return
bResult
;
}
void
ScStyleSheet
::
ResetParent
()
{
GetItemSet
().
SetParent
(
NULL
);
}
SfxItemSet
&
ScStyleSheet
::
GetItemSet
()
{
if
(
!
pSet
)
...
...
sc/source/filter/oox/stylesbuffer.cxx
Dosyayı görüntüle @
2ae89f59
...
...
@@ -3117,9 +3117,12 @@ OUString StylesBuffer::createDxfStyle( sal_Int32 nDxfId ) const
// Create a cell style. This may overwrite an existing style if
// one with the same name exists.
ScStyleSheet
&
rStyleSheet
=
ScfTools
::
MakeCellStyleSheet
(
*
getScDocument
().
GetStyleSheetPool
(),
rStyleName
,
true
);
rStyleSheet
.
ResetParent
();
SfxItemSet
&
rStyleItemSet
=
ScfTools
::
MakeCellStyleSheet
(
*
getScDocument
().
GetStyleSheetPool
(),
rStyleName
,
true
).
GetItemSet
();
rStyleSheet
.
GetItemSet
();
pDxf
->
fillToItemSet
(
rStyleItemSet
);
}
...
...
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