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
0762f059
Kaydet (Commit)
0762f059
authored
Kas 21, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Call the method directly via ScDocument, not via obscure UNO API.
Change-Id: I27628314337ae4df31420d63d7c09148369a6759
üst
79ceef87
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
document.hxx
sc/inc/document.hxx
+1
-1
column2.cxx
sc/source/core/data/column2.cxx
+0
-1
workbookhelper.cxx
sc/source/filter/oox/workbookhelper.cxx
+2
-4
No files found.
sc/inc/document.hxx
Dosyayı görüntüle @
0762f059
...
@@ -1920,7 +1920,7 @@ public:
...
@@ -1920,7 +1920,7 @@ public:
void
CompileDBFormula
();
void
CompileDBFormula
();
void
CompileDBFormula
(
bool
bCreateFormulaString
);
void
CompileDBFormula
(
bool
bCreateFormulaString
);
void
CompileNameFormula
(
bool
bCreateFormulaString
);
SC_DLLPUBLIC
void
CompileNameFormula
(
bool
bCreateFormulaString
);
void
CompileColRowNameFormula
();
void
CompileColRowNameFormula
();
/** Maximum string length of a column, e.g. for dBase export.
/** Maximum string length of a column, e.g. for dBase export.
...
...
sc/source/core/data/column2.cxx
Dosyayı görüntüle @
0762f059
...
@@ -3198,7 +3198,6 @@ void ScColumn::CompileNameFormula( bool bCreateFormulaString )
...
@@ -3198,7 +3198,6 @@ void ScColumn::CompileNameFormula( bool bCreateFormulaString )
{
{
CompileNameFormulaHandler
aFunc
(
bCreateFormulaString
);
CompileNameFormulaHandler
aFunc
(
bCreateFormulaString
);
sc
::
ProcessFormula
(
maCells
,
aFunc
);
sc
::
ProcessFormula
(
maCells
,
aFunc
);
RegroupFormulaCells
();
}
}
void
ScColumn
::
CompileColRowNameFormula
()
void
ScColumn
::
CompileColRowNameFormula
()
...
...
sc/source/filter/oox/workbookhelper.cxx
Dosyayı görüntüle @
0762f059
...
@@ -628,10 +628,8 @@ void WorkbookGlobals::finalize()
...
@@ -628,10 +628,8 @@ void WorkbookGlobals::finalize()
PropertySet
aPropSet
(
mxDoc
);
PropertySet
aPropSet
(
mxDoc
);
// #i74668# do not insert default sheets
// #i74668# do not insert default sheets
aPropSet
.
setProperty
(
PROP_IsLoaded
,
true
);
aPropSet
.
setProperty
(
PROP_IsLoaded
,
true
);
// #i79890# enable automatic update of defined names (before IsAdjustHeightEnabled!)
// #i79890# Compile named ranges before re-enabling row height adjustment. (no idea why).
Reference
<
XActionLockable
>
xLockable
(
aPropSet
.
getAnyProperty
(
PROP_NamedRanges
),
UNO_QUERY
);
mpDoc
->
CompileNameFormula
(
false
);
if
(
xLockable
.
is
()
)
xLockable
->
removeActionLock
();
// enable automatic update of linked sheets and DDE links
// enable automatic update of linked sheets and DDE links
aPropSet
.
setProperty
(
PROP_IsExecuteLinkEnabled
,
true
);
aPropSet
.
setProperty
(
PROP_IsExecuteLinkEnabled
,
true
);
// #i79826# enable updating automatic row height after loading the document
// #i79826# enable updating automatic row height after loading the document
...
...
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