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
dc2710a5
Kaydet (Commit)
dc2710a5
authored
Eki 03, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sc/inc/nameuno.hxx from String to OUString
Change-Id: I99faf0c59c890a1de0e038053e2d97bf1a017270
üst
165b06cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
nameuno.hxx
sc/inc/nameuno.hxx
+4
-4
nameuno.cxx
sc/source/ui/unoobj/nameuno.cxx
+4
-4
No files found.
sc/inc/nameuno.hxx
Dosyayı görüntüle @
dc2710a5
...
...
@@ -60,20 +60,20 @@ class SC_DLLPUBLIC ScNamedRangeObj : public ::cppu::WeakImplHelper6<
private
:
rtl
::
Reference
<
ScNamedRangesObj
>
mxParent
;
ScDocShell
*
pDocShell
;
String
aName
;
OUString
aName
;
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
container
::
XNamed
>
mxSheet
;
private
:
friend
class
ScVbaName
;
ScRangeData
*
GetRangeData_Impl
();
void
Modify_Impl
(
const
String
*
pNewName
,
const
ScTokenArray
*
pNewTokens
,
const
String
*
pNewContent
,
void
Modify_Impl
(
const
OU
String
*
pNewName
,
const
ScTokenArray
*
pNewTokens
,
const
OU
String
*
pNewContent
,
const
ScAddress
*
pNewPos
,
const
sal_uInt16
*
pNewType
,
const
formula
::
FormulaGrammar
::
Grammar
eGrammar
);
SCTAB
GetTab_Impl
();
public
:
ScNamedRangeObj
(
rtl
::
Reference
<
ScNamedRangesObj
>
xParent
,
ScDocShell
*
pDocSh
,
const
String
&
rNm
,
ScNamedRangeObj
(
rtl
::
Reference
<
ScNamedRangesObj
>
xParent
,
ScDocShell
*
pDocSh
,
const
OU
String
&
rNm
,
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
container
::
XNamed
>
xSheet
=
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
container
::
XNamed
>
());
virtual
~
ScNamedRangeObj
();
...
...
sc/source/ui/unoobj/nameuno.cxx
Dosyayı görüntüle @
dc2710a5
...
...
@@ -85,7 +85,7 @@ static bool lcl_UserVisibleName(const ScRangeData& rData)
return
!
rData
.
HasType
(
RT_DATABASE
);
}
ScNamedRangeObj
::
ScNamedRangeObj
(
rtl
::
Reference
<
ScNamedRangesObj
>
xParent
,
ScDocShell
*
pDocSh
,
const
String
&
rNm
,
Reference
<
container
::
XNamed
>
xSheet
)
:
ScNamedRangeObj
::
ScNamedRangeObj
(
rtl
::
Reference
<
ScNamedRangesObj
>
xParent
,
ScDocShell
*
pDocSh
,
const
OU
String
&
rNm
,
Reference
<
container
::
XNamed
>
xSheet
)
:
mxParent
(
xParent
),
pDocShell
(
pDocSh
),
aName
(
rNm
),
...
...
@@ -149,7 +149,7 @@ SCTAB ScNamedRangeObj::GetTab_Impl()
// sheet::XNamedRange
void
ScNamedRangeObj
::
Modify_Impl
(
const
String
*
pNewName
,
const
ScTokenArray
*
pNewTokens
,
const
String
*
pNewContent
,
void
ScNamedRangeObj
::
Modify_Impl
(
const
OUString
*
pNewName
,
const
ScTokenArray
*
pNewTokens
,
const
OU
String
*
pNewContent
,
const
ScAddress
*
pNewPos
,
const
sal_uInt16
*
pNewType
,
const
formula
::
FormulaGrammar
::
Grammar
eGrammar
)
{
...
...
@@ -224,7 +224,7 @@ void SAL_CALL ScNamedRangeObj::setName( const OUString& aNewName )
SolarMutexGuard
aGuard
;
//! Formeln anpassen ?????
String
aNewStr
(
aNewName
);
OU
String
aNewStr
(
aNewName
);
// GRAM_PODF_A1 for API compatibility.
Modify_Impl
(
&
aNewStr
,
NULL
,
NULL
,
NULL
,
NULL
,
formula
::
FormulaGrammar
::
GRAM_PODF_A1
);
...
...
@@ -247,7 +247,7 @@ void SAL_CALL ScNamedRangeObj::setContent( const OUString& aContent )
throw
(
uno
::
RuntimeException
)
{
SolarMutexGuard
aGuard
;
String
aContStr
(
aContent
);
OU
String
aContStr
(
aContent
);
// GRAM_PODF_A1 for API compatibility.
Modify_Impl
(
NULL
,
NULL
,
&
aContStr
,
NULL
,
NULL
,
formula
::
FormulaGrammar
::
GRAM_PODF_A1
);
}
...
...
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