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
d84b9742
Kaydet (Commit)
d84b9742
authored
Eyl 19, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sw/inc/swtable.hxx from String to OUString
Change-Id: I1f5c2c612589fd86567ee9d3e09ecd5bff74ce25
üst
04caa8bb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
swtable.hxx
sw/inc/swtable.hxx
+3
-3
docchart.cxx
sw/source/core/doc/docchart.cxx
+2
-2
swtable.cxx
sw/source/core/table/swtable.cxx
+2
-2
unotbl.cxx
sw/source/core/unocore/unotbl.cxx
+1
-1
No files found.
sw/inc/swtable.hxx
Dosyayı görüntüle @
d84b9742
...
...
@@ -269,7 +269,7 @@ public:
// #i80314#
// add 2nd parameter in order to control validation check in called method
// <_GetBoxNum(..)>
const
SwTableBox
*
GetTblBox
(
const
String
&
rName
,
const
SwTableBox
*
GetTblBox
(
const
OU
String
&
rName
,
const
bool
bPerformValidCheck
=
false
)
const
;
// Copy selected boxes to another document.
bool
MakeCopy
(
SwDoc
*
,
const
SwPosition
&
,
const
SwSelBoxes
&
,
...
...
@@ -293,7 +293,7 @@ public:
bool
IsTblComplex
()
const
;
// Returns true if table or selection is balanced.
bool
IsTblComplexForChart
(
const
String
&
rSel
)
const
;
bool
IsTblComplexForChart
(
const
OU
String
&
rSel
)
const
;
// Search all content-bearing boxes of the base line on which this box stands.
// rBoxes as a return value for immediate use.
...
...
@@ -432,7 +432,7 @@ public:
bool
bOvrTblLns
=
true
)
const
;
// Return name of this box. It is determined dynamically and
// is calculated from the position in the lines/boxes/table.
String
GetName
()
const
;
OU
String
GetName
()
const
;
// Return "value" of box (for calculating in table).
double
GetValue
(
SwTblCalcPara
&
rPara
)
const
;
...
...
sw/source/core/doc/docchart.cxx
Dosyayı görüntüle @
d84b9742
...
...
@@ -52,10 +52,10 @@ void SwTable::UpdateCharts() const
GetFrmFmt
()
->
GetDoc
()
->
UpdateCharts
(
GetFrmFmt
()
->
GetName
()
);
}
bool
SwTable
::
IsTblComplexForChart
(
const
String
&
rSelection
)
const
bool
SwTable
::
IsTblComplexForChart
(
const
OU
String
&
rSelection
)
const
{
const
SwTableBox
*
pSttBox
,
*
pEndBox
;
if
(
2
<
rSelection
.
Len
()
)
if
(
2
<
rSelection
.
getLength
()
)
{
// Remove brackets at the beginning and from the end
String
sBox
(
rSelection
);
...
...
sw/source/core/table/swtable.cxx
Dosyayı görüntüle @
d84b9742
...
...
@@ -1414,7 +1414,7 @@ sal_uInt16 SwTable::_GetBoxNum( OUString& rStr, sal_Bool bFirstPart,
// #i80314#
// add 2nd parameter and its handling
const
SwTableBox
*
SwTable
::
GetTblBox
(
const
String
&
rName
,
const
SwTableBox
*
SwTable
::
GetTblBox
(
const
OU
String
&
rName
,
const
bool
bPerformValidCheck
)
const
{
const
SwTableBox
*
pBox
=
0
;
...
...
@@ -1895,7 +1895,7 @@ void sw_GetTblBoxColStr( sal_uInt16 nCol, String& rNm )
}
while
(
1
);
}
String
SwTableBox
::
GetName
()
const
OU
String
SwTableBox
::
GetName
()
const
{
if
(
!
pSttNd
)
// box without content?
{
...
...
sw/source/core/unocore/unotbl.cxx
Dosyayı görüntüle @
d84b9742
...
...
@@ -571,7 +571,7 @@ static void lcl_InspectLines(SwTableLines& rLines, std::vector<OUString*>& rAllN
for
(
sal_uInt16
j
=
0
;
j
<
rBoxes
.
size
();
j
++
)
{
SwTableBox
*
pBox
=
rBoxes
[
j
];
if
(
pBox
->
GetName
().
Len
()
&&
pBox
->
getRowSpan
()
>
0
)
if
(
!
pBox
->
GetName
().
isEmpty
()
&&
pBox
->
getRowSpan
()
>
0
)
rAllNames
.
push_back
(
new
OUString
(
pBox
->
GetName
())
);
SwTableLines
&
rBoxLines
=
pBox
->
GetTabLines
();
if
(
!
rBoxLines
.
empty
())
...
...
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