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
a72cc8b1
Kaydet (Commit)
a72cc8b1
authored
Eyl 18, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sw/inc/unochart.hxx from String to OUString
Change-Id: Ib9e52a28d0977efca3ccd2e06f87b413c205c2ad
üst
4ebde2bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
unochart.hxx
sw/inc/unochart.hxx
+3
-3
unochart.cxx
sw/source/core/unocore/unochart.cxx
+3
-3
No files found.
sw/inc/unochart.hxx
Dosyayı görüntüle @
a72cc8b1
...
@@ -66,7 +66,7 @@ class SwFrmFmt;
...
@@ -66,7 +66,7 @@ class SwFrmFmt;
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
bool
FillRangeDescriptor
(
SwRangeDescriptor
&
rDesc
,
const
String
&
rCellRangeName
);
bool
FillRangeDescriptor
(
SwRangeDescriptor
&
rDesc
,
const
OU
String
&
rCellRangeName
);
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
...
@@ -265,8 +265,8 @@ class SwChartDataSequence :
...
@@ -265,8 +265,8 @@ class SwChartDataSequence :
::
cppu
::
OInterfaceContainerHelper
aModifyListeners
;
::
cppu
::
OInterfaceContainerHelper
aModifyListeners
;
::
com
::
sun
::
star
::
chart2
::
data
::
DataSequenceRole
aRole
;
::
com
::
sun
::
star
::
chart2
::
data
::
DataSequenceRole
aRole
;
String
aRowLabelText
;
OU
String
aRowLabelText
;
String
aColLabelText
;
OU
String
aColLabelText
;
// holds a reference to the data-provider to guarantee it's lifetime last as
// holds a reference to the data-provider to guarantee it's lifetime last as
// long as the pointer may be used.
// long as the pointer may be used.
...
...
sw/source/core/unocore/unochart.cxx
Dosyayı görüntüle @
a72cc8b1
...
@@ -207,10 +207,10 @@ static void LaunchModifiedEvent(
...
@@ -207,10 +207,10 @@ static void LaunchModifiedEvent(
// - e.g. "Table1.A2:E5"
// - e.g. "Table1.A2:E5"
bool
FillRangeDescriptor
(
bool
FillRangeDescriptor
(
SwRangeDescriptor
&
rDesc
,
SwRangeDescriptor
&
rDesc
,
const
String
&
rCellRangeName
)
const
OU
String
&
rCellRangeName
)
{
{
xub_StrLen
nToken
=
STRING_NOTFOUND
==
rCellRangeName
.
Search
(
'.'
)
?
0
:
1
;
xub_StrLen
nToken
=
-
1
==
rCellRangeName
.
indexOf
(
'.'
)
?
0
:
1
;
String
aCellRangeNoTableName
(
rCellRangeName
.
G
etToken
(
nToken
,
'.'
)
);
String
aCellRangeNoTableName
(
rCellRangeName
.
g
etToken
(
nToken
,
'.'
)
);
String
aTLName
(
aCellRangeNoTableName
.
GetToken
(
0
,
':'
)
);
// name of top left cell
String
aTLName
(
aCellRangeNoTableName
.
GetToken
(
0
,
':'
)
);
// name of top left cell
String
aBRName
(
aCellRangeNoTableName
.
GetToken
(
1
,
':'
)
);
// name of bottom right cell
String
aBRName
(
aCellRangeNoTableName
.
GetToken
(
1
,
':'
)
);
// name of bottom right cell
if
(
!
aTLName
.
Len
()
||
!
aBRName
.
Len
())
if
(
!
aTLName
.
Len
()
||
!
aBRName
.
Len
())
...
...
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