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
0ce9c4f9
Kaydet (Commit)
0ce9c4f9
authored
Kas 04, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: fdo#69049 Format in 'Outline Numbering' not saved anymore
Change-Id: Ibd129d989a32eec2f63413d1ed09962ad3b38c68
üst
c61b2066
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
7 deletions
+17
-7
autoform.cxx
sc/source/core/tool/autoform.cxx
+1
-1
uinums.cxx
sw/source/uibase/config/uinums.cxx
+16
-6
No files found.
sc/source/core/tool/autoform.cxx
Dosyayı görüntüle @
0ce9c4f9
...
...
@@ -1070,7 +1070,7 @@ bool ScAutoFormat::Save()
SvtPathOptions
aPathOpt
;
aURL
.
SetSmartURL
(
aPathOpt
.
GetUserConfigPath
()
);
aURL
.
setFinalSlash
();
aURL
.
Append
(
OUString
(
sAutoTblFmtName
)
);
aURL
.
Append
(
sAutoTblFmtName
);
SfxMedium
aMedium
(
aURL
.
GetMainURL
(
INetURLObject
::
NO_DECODE
),
STREAM_WRITE
);
SvStream
*
pStream
=
aMedium
.
GetOutStream
();
...
...
sw/source/uibase/config/uinums.cxx
Dosyayı görüntüle @
0ce9c4f9
...
...
@@ -67,13 +67,23 @@ SwBaseNumRules::~SwBaseNumRules()
{
if
(
bModified
)
{
INetURLObject
aURL
;
SvtPathOptions
aPathOpt
;
OUString
sNm
(
aPathOpt
.
GetUserConfigPath
()
+
"/"
+
sFileName
);
INetURLObject
aTempObj
(
sNm
);
sNm
=
aTempObj
.
GetFull
();
SfxMedium
aStrm
(
sNm
,
STREAM_WRITE
|
STREAM_TRUNC
|
STREAM_SHARE_DENYALL
);
Store
(
*
aStrm
.
GetOutStream
()
);
aURL
.
SetSmartURL
(
aPathOpt
.
GetUserConfigPath
()
);
aURL
.
setFinalSlash
();
aURL
.
Append
(
sFileName
);
SfxMedium
aMedium
(
aURL
.
GetMainURL
(
INetURLObject
::
NO_DECODE
),
STREAM_WRITE
);
SvStream
*
pStream
=
aMedium
.
GetOutStream
();
bool
bRet
=
(
pStream
&&
pStream
->
GetError
()
==
0
);
if
(
bRet
)
{
Store
(
*
pStream
);
pStream
->
Flush
();
aMedium
.
Commit
();
}
}
for
(
sal_uInt16
i
=
0
;
i
<
nMaxRules
;
++
i
)
...
...
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