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
b9def20c
Kaydet (Commit)
b9def20c
authored
Ara 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
scripting: Use appropriate OUString functions on string constants
Change-Id: Iacb434225e779de4911e9acc8431662f5eabcee3
üst
43c8ca3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
basmethnode.cxx
scripting/source/basprov/basmethnode.cxx
+1
-1
basprov.cxx
scripting/source/basprov/basprov.cxx
+1
-1
MasterScriptProvider.cxx
scripting/source/provider/MasterScriptProvider.cxx
+2
-2
URIHelper.cxx
scripting/source/provider/URIHelper.cxx
+1
-1
No files found.
scripting/source/basprov/basmethnode.cxx
Dosyayı görüntüle @
b9def20c
...
...
@@ -44,7 +44,7 @@ using namespace ::sf_misc;
#define BASPROV_PROPERTY_ID_EDITABLE 2
#define BASPROV_PROPERTY_URI OUString( "URI" )
#define BASPROV_PROPERTY_EDITABLE
OUString( "Editable" )
#define BASPROV_PROPERTY_EDITABLE
"Editable"
#define BASPROV_DEFAULT_ATTRIBS() PropertyAttribute::BOUND | PropertyAttribute::TRANSIENT | PropertyAttribute::READONLY
...
...
scripting/source/basprov/basprov.cxx
Dosyayı görüntüle @
b9def20c
...
...
@@ -226,7 +226,7 @@ namespace basprov
if
(
!
(
aArguments
[
0
]
>>=
m_sScriptingContext
)
)
{
throw
IllegalArgumentException
(
OUString
(
"BasicProviderImpl::initialize: incorrect argument type "
)
+
aArguments
[
0
].
getValueTypeName
(),
"BasicProviderImpl::initialize: incorrect argument type "
+
aArguments
[
0
].
getValueTypeName
(),
*
this
,
1
);
...
...
scripting/source/provider/MasterScriptProvider.cxx
Dosyayı görüntüle @
b9def20c
...
...
@@ -310,11 +310,11 @@ throw ( provider::ScriptFrameworkErrorException,
// ** Special case is BASIC, all calls to getScript will be handled
// by the language script provider in the current location context
// even if its different
if
(
(
location
.
equals
(
"document"
)
if
(
(
location
==
"document"
&&
m_xModel
.
is
()
)
||
(
endsWith
(
m_sCtxString
,
location
)
)
||
(
language
.
equals
(
"Basic"
)
)
||
(
language
==
"Basic"
)
)
{
Reference
<
provider
::
XScriptProvider
>
xScriptProvider
;
...
...
scripting/source/provider/URIHelper.cxx
Dosyayı görüntüle @
b9def20c
...
...
@@ -122,7 +122,7 @@ ScriptingFrameworkURIHelper::initBaseURI()
else
if
(
m_sLocation
==
USER_UNO_PACKAGES
)
{
test
=
"uno_packages"
;
uri
=
OUString
(
USER_URI
)
+
USER_UNO_PACKAGES_DIR
;
uri
=
OUString
Literal
(
USER_URI
)
+
USER_UNO_PACKAGES_DIR
;
}
else
if
(
m_sLocation
==
SHARE
)
{
...
...
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