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
4b586bd6
Kaydet (Commit)
4b586bd6
authored
Ara 05, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
correctly parse range in cond format dlg
Change-Id: I92d19cd71f7f1c9e90b2d3039a5c3c6a0143d1c7
üst
1c60abfd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
6 deletions
+4
-6
rangelst.hxx
sc/inc/rangelst.hxx
+1
-1
rangelst.cxx
sc/source/core/tool/rangelst.cxx
+2
-3
condformatdlg.cxx
sc/source/ui/condformat/condformatdlg.cxx
+1
-1
Module_sw.mk
sw/Module_sw.mk
+0
-1
No files found.
sc/inc/rangelst.hxx
Dosyayı görüntüle @
4b586bd6
...
...
@@ -41,7 +41,7 @@ public:
sal_uInt16
Parse
(
const
String
&
,
ScDocument
*
=
NULL
,
sal_uInt16
nMask
=
SCA_VALID
,
formula
::
FormulaGrammar
::
AddressConvention
eConv
=
formula
::
FormulaGrammar
::
CONV_OOO
,
sal_Unicode
cDelimiter
=
0
);
SCTAB
nDefaultTab
=
0
,
sal_Unicode
cDelimiter
=
0
);
void
Format
(
String
&
,
sal_uInt16
nFlags
=
0
,
ScDocument
*
=
NULL
,
formula
::
FormulaGrammar
::
AddressConvention
eConv
=
formula
::
FormulaGrammar
::
CONV_OOO
,
...
...
sc/source/core/tool/rangelst.cxx
Dosyayı görüntüle @
4b586bd6
...
...
@@ -185,7 +185,7 @@ ScRangeList::~ScRangeList()
sal_uInt16
ScRangeList
::
Parse
(
const
String
&
rStr
,
ScDocument
*
pDoc
,
sal_uInt16
nMask
,
formula
::
FormulaGrammar
::
AddressConvention
eConv
,
sal_Unicode
cDelimiter
)
SCTAB
nDefaultTab
,
sal_Unicode
cDelimiter
)
{
if
(
rStr
.
Len
()
)
{
...
...
@@ -199,8 +199,7 @@ sal_uInt16 ScRangeList::Parse( const String& rStr, ScDocument* pDoc, sal_uInt16
SCTAB
nTab
=
0
;
if
(
pDoc
)
{
//! erste markierte Tabelle gibts nicht mehr am Dokument
//! -> uebergeben? oder spaeter an den Ranges setzen
nTab
=
nDefaultTab
;
}
else
nTab
=
0
;
...
...
sc/source/ui/condformat/condformatdlg.cxx
Dosyayı görüntüle @
4b586bd6
...
...
@@ -456,7 +456,7 @@ ScConditionalFormat* ScCondFormatDlg::GetConditionalFormat() const
{
rtl
::
OUString
aRangeStr
=
maEdRange
.
GetText
();
ScRangeList
aRange
;
sal_uInt16
nFlags
=
aRange
.
Parse
(
aRangeStr
,
mpDoc
,
SCA_VALID
,
mpDoc
->
GetAddressConvention
());
sal_uInt16
nFlags
=
aRange
.
Parse
(
aRangeStr
,
mpDoc
,
SCA_VALID
,
mpDoc
->
GetAddressConvention
()
,
maPos
.
Tab
()
);
ScConditionalFormat
*
pFormat
=
maCondFormList
.
GetConditionalFormat
();
if
(
nFlags
&
SCA_VALID
&&
!
aRange
.
empty
()
&&
pFormat
)
...
...
sw/Module_sw.mk
Dosyayı görüntüle @
4b586bd6
...
...
@@ -38,7 +38,6 @@ $(eval $(call gb_Module_add_targets,sw,\
endif
$(eval $(call gb_Module_add_check_targets,sw,\
CppunitTest_sw_swdoc_test \
))
$(eval $(call gb_Module_add_slowcheck_targets,sw,\
...
...
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