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
83eb6bc5
Kaydet (Commit)
83eb6bc5
authored
Eki 03, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sc/inc/l*.hxx from String to OUString
Change-Id: I52f9989cead1fc84e659fe0e4180a9c85388355d
üst
dc2710a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
linkuno.hxx
sc/inc/linkuno.hxx
+7
-7
lookupcache.hxx
sc/inc/lookupcache.hxx
+4
-4
lookupcache.cxx
sc/source/core/tool/lookupcache.cxx
+1
-1
linkuno.cxx
sc/source/ui/unoobj/linkuno.cxx
+3
-3
No files found.
sc/inc/linkuno.hxx
Dosyayı görüntüle @
83eb6bc5
...
...
@@ -66,7 +66,7 @@ class ScSheetLinkObj : public cppu::WeakImplHelper4<
private
:
SfxItemPropertySet
aPropSet
;
ScDocShell
*
pDocShell
;
String
aFileName
;
OUString
aFileName
;
XRefreshListenerArr_Impl
aRefreshListeners
;
ScTableLink
*
GetLink_Impl
()
const
;
...
...
@@ -74,7 +74,7 @@ private:
void
ModifyRefreshDelay_Impl
(
sal_Int32
nRefresh
);
public
:
ScSheetLinkObj
(
ScDocShell
*
pDocSh
,
const
String
&
rName
);
ScSheetLinkObj
(
ScDocShell
*
pDocSh
,
const
OU
String
&
rName
);
virtual
~
ScSheetLinkObj
();
virtual
void
Notify
(
SfxBroadcaster
&
rBC
,
const
SfxHint
&
rHint
);
...
...
@@ -378,16 +378,16 @@ class ScDDELinkObj : public cppu::WeakImplHelper5<
{
private
:
ScDocShell
*
pDocShell
;
String
aAppl
;
String
aTopic
;
String
aItem
;
OUString
aAppl
;
OUString
aTopic
;
OUString
aItem
;
XRefreshListenerArr_Impl
aRefreshListeners
;
void
Refreshed_Impl
();
public
:
ScDDELinkObj
(
ScDocShell
*
pDocSh
,
const
String
&
rA
,
const
String
&
rT
,
const
String
&
rI
);
ScDDELinkObj
(
ScDocShell
*
pDocSh
,
const
OU
String
&
rA
,
const
OUString
&
rT
,
const
OU
String
&
rI
);
virtual
~
ScDDELinkObj
();
virtual
void
Notify
(
SfxBroadcaster
&
rBC
,
const
SfxHint
&
rHint
);
...
...
sc/inc/lookupcache.hxx
Dosyayı görüntüle @
83eb6bc5
...
...
@@ -63,7 +63,7 @@ public:
union
{
double
mfVal
;
const
String
*
mpStr
;
const
OUString
*
mpStr
;
};
bool
mbAlloc
:
1
;
bool
mbString
:
1
;
...
...
@@ -94,7 +94,7 @@ public:
mfVal
=
fVal
;
}
void
setString
(
const
String
*
pStr
)
void
setString
(
const
OU
String
*
pStr
)
{
deleteString
();
mbAlloc
=
false
;
...
...
@@ -102,11 +102,11 @@ public:
mpStr
=
pStr
;
}
void
setString
(
const
String
&
rStr
)
void
setString
(
const
OU
String
&
rStr
)
{
deleteString
();
mbAlloc
=
mbString
=
true
;
mpStr
=
new
String
(
rStr
);
mpStr
=
new
OU
String
(
rStr
);
}
bool
operator
==
(
const
QueryCriteria
&
r
)
const
...
...
sc/source/core/tool/lookupcache.cxx
Dosyayı görüntüle @
83eb6bc5
...
...
@@ -56,7 +56,7 @@ ScLookupCache::QueryCriteria::QueryCriteria( const ScLookupCache::QueryCriteria
{
if
(
r
.
mbString
&&
r
.
mpStr
)
{
mpStr
=
new
String
(
*
r
.
mpStr
);
mpStr
=
new
OU
String
(
*
r
.
mpStr
);
mbAlloc
=
mbString
=
true
;
}
}
...
...
sc/source/ui/unoobj/linkuno.cxx
Dosyayı görüntüle @
83eb6bc5
...
...
@@ -76,7 +76,7 @@ SC_SIMPLE_SERVICE_INFO( ScSheetLinksObj, "ScSheetLinksObj", "com.sun.star.sheet.
//------------------------------------------------------------------------
ScSheetLinkObj
::
ScSheetLinkObj
(
ScDocShell
*
pDocSh
,
const
String
&
rName
)
:
ScSheetLinkObj
::
ScSheetLinkObj
(
ScDocShell
*
pDocSh
,
const
OU
String
&
rName
)
:
aPropSet
(
lcl_GetSheetLinkMap
()
),
pDocShell
(
pDocSh
),
aFileName
(
rName
)
...
...
@@ -1045,8 +1045,8 @@ sal_Bool SAL_CALL ScAreaLinksObj::hasElements() throw(uno::RuntimeException)
//------------------------------------------------------------------------
ScDDELinkObj
::
ScDDELinkObj
(
ScDocShell
*
pDocSh
,
const
String
&
rA
,
const
String
&
rT
,
const
String
&
rI
)
:
ScDDELinkObj
::
ScDDELinkObj
(
ScDocShell
*
pDocSh
,
const
OU
String
&
rA
,
const
OUString
&
rT
,
const
OU
String
&
rI
)
:
pDocShell
(
pDocSh
),
aAppl
(
rA
),
aTopic
(
rT
),
...
...
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