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
c1c115cc
Kaydet (Commit)
c1c115cc
authored
Eki 05, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
String -> rtl::OUString.
üst
27372c66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
xehelper.cxx
sc/source/filter/excel/xehelper.cxx
+5
-5
xehelper.hxx
sc/source/filter/inc/xehelper.hxx
+2
-2
No files found.
sc/source/filter/excel/xehelper.cxx
Dosyayı görüntüle @
c1c115cc
...
@@ -980,18 +980,18 @@ rtl::OUString lclEncodeDosUrl(
...
@@ -980,18 +980,18 @@ rtl::OUString lclEncodeDosUrl(
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
String
XclExpUrlHelper
::
EncodeUrl
(
const
XclExpRoot
&
rRoot
,
const
String
&
rAbsUrl
,
const
rtl
::
OUString
*
pTableName
)
rtl
::
OUString
XclExpUrlHelper
::
EncodeUrl
(
const
XclExpRoot
&
rRoot
,
const
rtl
::
OU
String
&
rAbsUrl
,
const
rtl
::
OUString
*
pTableName
)
{
{
rtl
::
OUString
aDosUrl
=
INetURLObject
(
rAbsUrl
).
getFSysPath
(
INetURLObject
::
FSYS_DOS
);
rtl
::
OUString
aDosUrl
=
INetURLObject
(
rAbsUrl
).
getFSysPath
(
INetURLObject
::
FSYS_DOS
);
rtl
::
OUString
aDosBase
=
INetURLObject
(
rRoot
.
GetBasePath
()).
getFSysPath
(
INetURLObject
::
FSYS_DOS
);
rtl
::
OUString
aDosBase
=
INetURLObject
(
rRoot
.
GetBasePath
()).
getFSysPath
(
INetURLObject
::
FSYS_DOS
);
return
lclEncodeDosUrl
(
rRoot
.
GetBiff
(),
aDosUrl
,
aDosBase
,
pTableName
);
return
lclEncodeDosUrl
(
rRoot
.
GetBiff
(),
aDosUrl
,
aDosBase
,
pTableName
);
}
}
String
XclExpUrlHelper
::
EncodeDde
(
const
String
&
rApplic
,
const
String
rTopic
)
rtl
::
OUString
XclExpUrlHelper
::
EncodeDde
(
const
rtl
::
OUString
&
rApplic
,
const
rtl
::
OUString
&
rTopic
)
{
{
String
aDde
(
rApplic
)
;
rtl
::
OUStringBuffer
aBuf
;
a
Dde
.
Append
(
EXC_DDE_DELIM
).
Append
(
rTopic
);
a
Buf
.
append
(
rApplic
).
append
(
EXC_DDE_DELIM
).
append
(
rTopic
);
return
a
Dde
;
return
a
Buf
.
makeStringAndClear
()
;
}
}
// Cached Value Lists =========================================================
// Cached Value Lists =========================================================
...
...
sc/source/filter/inc/xehelper.hxx
Dosyayı görüntüle @
c1c115cc
...
@@ -412,9 +412,9 @@ class XclExpUrlHelper : boost::noncopyable
...
@@ -412,9 +412,9 @@ class XclExpUrlHelper : boost::noncopyable
public
:
public
:
/** Encodes and returns the URL passed in rAbsUrl to an Excel like URL.
/** Encodes and returns the URL passed in rAbsUrl to an Excel like URL.
@param pTableName Optional pointer to a table name to be encoded in this URL. */
@param pTableName Optional pointer to a table name to be encoded in this URL. */
static
String
EncodeUrl
(
const
XclExpRoot
&
rRoot
,
const
String
&
rAbsUrl
,
const
rtl
::
OUString
*
pTableName
=
0
);
static
rtl
::
OUString
EncodeUrl
(
const
XclExpRoot
&
rRoot
,
const
rtl
::
OU
String
&
rAbsUrl
,
const
rtl
::
OUString
*
pTableName
=
0
);
/** Encodes and returns the passed DDE link to an Excel like DDE link. */
/** Encodes and returns the passed DDE link to an Excel like DDE link. */
static
String
EncodeDde
(
const
String
&
rApplic
,
const
String
rTopic
);
static
rtl
::
OUString
EncodeDde
(
const
rtl
::
OUString
&
rApplic
,
const
rtl
::
OUString
&
rTopic
);
private
:
private
:
/** We don't want anybody to instantiate this class, since it is just a
/** We don't want anybody to instantiate this class, since it is just a
...
...
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