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
5fca9e5b
Kaydet (Commit)
5fca9e5b
authored
Eki 31, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unnecessary use of OUString constructor in UNOTOOLS module
Change-Id: Iad166e6b9ce0877200bd58c388b3914b15167196
üst
b9bbd847
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
13 deletions
+13
-13
eventcfg.cxx
unotools/source/config/eventcfg.cxx
+3
-3
lingucfg.cxx
unotools/source/config/lingucfg.cxx
+1
-1
localedatawrapper.cxx
unotools/source/i18n/localedatawrapper.cxx
+5
-5
ucbhelper.cxx
unotools/source/ucbhelper/ucbhelper.cxx
+2
-2
ucblockbytes.cxx
unotools/source/ucbhelper/ucblockbytes.cxx
+2
-2
No files found.
unotools/source/config/eventcfg.cxx
Dosyayı görüntüle @
5fca9e5b
...
...
@@ -116,7 +116,7 @@ GlobalEventConfig_Impl::GlobalEventConfig_Impl()
// Enable notification mechanism of our baseclass.
// We need it to get information about changes outside these class on our used configuration keys! */
Sequence
<
OUString
>
aNotifySeq
(
1
);
aNotifySeq
[
0
]
=
OUString
(
"Events"
)
;
aNotifySeq
[
0
]
=
"Events"
;
EnableNotification
(
aNotifySeq
,
sal_True
);
}
...
...
@@ -256,9 +256,9 @@ Any SAL_CALL GlobalEventConfig_Impl::getByName( const OUString& aName ) throw (c
{
Any
aRet
;
Sequence
<
beans
::
PropertyValue
>
props
(
2
);
props
[
0
].
Name
=
OUString
(
"EventType"
)
;
props
[
0
].
Name
=
"EventType"
;
props
[
0
].
Value
<<=
OUString
(
"Script"
);
props
[
1
].
Name
=
OUString
(
"Script"
)
;
props
[
1
].
Name
=
"Script"
;
EventBindingHash
::
const_iterator
it
=
m_eventBindingHash
.
find
(
aName
);
if
(
it
!=
m_eventBindingHash
.
end
()
)
{
...
...
unotools/source/config/lingucfg.cxx
Dosyayı görüntüle @
5fca9e5b
...
...
@@ -1100,7 +1100,7 @@ uno::Reference< util::XChangesBatch > SvtLinguConfig::GetMainUpdateAccess() cons
// get configuration update access
beans
::
PropertyValue
aValue
;
aValue
.
Name
=
OUString
(
"nodepath"
)
;
aValue
.
Name
=
"nodepath"
;
aValue
.
Value
=
uno
::
makeAny
(
OUString
(
"org.openoffice.Office.Linguistic"
));
uno
::
Sequence
<
uno
::
Any
>
aProps
(
1
);
aProps
[
0
]
<<=
aValue
;
...
...
unotools/source/i18n/localedatawrapper.cxx
Dosyayı görüntüle @
5fca9e5b
...
...
@@ -120,20 +120,20 @@ const ::com::sun::star::lang::Locale& LocaleDataWrapper::getMyLocale() const
void
LocaleDataWrapper
::
invalidateData
()
{
aCurrSymbol
=
OUString
()
;
aCurrBankSymbol
=
OUString
()
;
aCurrSymbol
=
""
;
aCurrBankSymbol
=
""
;
nDateFormat
=
nLongDateFormat
=
nDateFormatInvalid
;
nCurrPositiveFormat
=
nCurrNegativeFormat
=
nCurrDigits
=
nCurrFormatInvalid
;
if
(
bLocaleDataItemValid
)
{
for
(
sal_Int32
j
=
0
;
j
<
LocaleItem
::
COUNT
;
++
j
)
aLocaleItem
[
j
]
=
OUString
()
;
aLocaleItem
[
j
]
=
""
;
bLocaleDataItemValid
=
sal_False
;
}
if
(
bReservedWordValid
)
{
for
(
sal_Int16
j
=
0
;
j
<
reservedWords
::
COUNT
;
++
j
)
aReservedWord
[
j
]
=
OUString
()
;
aReservedWord
[
j
]
=
""
;
bReservedWordValid
=
sal_False
;
}
xDefaultCalendar
.
reset
();
...
...
@@ -595,7 +595,7 @@ void LocaleDataWrapper::getCurrSymbolsImpl()
{
if
(
areChecksEnabled
())
outputCheckMessage
(
OUString
(
"LocaleDataWrapper::getCurrSymbolsImpl: no currency at all, using ShellsAndPebbles"
));
aCurrSymbol
=
OUString
(
"ShellsAndPebbles"
)
;
aCurrSymbol
=
"ShellsAndPebbles"
;
aCurrBankSymbol
=
aCurrSymbol
;
nCurrPositiveFormat
=
nCurrNegativeFormat
=
nCurrFormatDefault
;
nCurrDigits
=
2
;
...
...
unotools/source/ucbhelper/ucbhelper.cxx
Dosyayı görüntüle @
5fca9e5b
...
...
@@ -86,7 +86,7 @@ std::vector<OUString> getContents(OUString const & url) {
std
::
vector
<
OUString
>
cs
;
ucbhelper
::
Content
c
(
content
(
url
));
css
::
uno
::
Sequence
<
OUString
>
args
(
1
);
args
[
0
]
=
OUString
(
"Title"
)
;
args
[
0
]
=
"Title"
;
css
::
uno
::
Reference
<
css
::
sdbc
::
XResultSet
>
res
(
c
.
createCursor
(
args
,
ucbhelper
::
INCLUDE_FOLDERS_AND_DOCUMENTS
),
css
::
uno
::
UNO_SET_THROW
);
...
...
@@ -250,7 +250,7 @@ bool utl::UCBContentHelper::MakeFolder(
continue
;
}
css
::
uno
::
Sequence
<
OUString
>
keys
(
1
);
keys
[
0
]
=
OUString
(
"Title"
)
;
keys
[
0
]
=
"Title"
;
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>
values
(
1
);
values
[
0
]
<<=
title
;
if
(
parent
.
insertNewContent
(
info
[
i
].
Type
,
keys
,
values
,
result
))
...
...
unotools/source/ucbhelper/ucblockbytes.cxx
Dosyayı görüntüle @
5fca9e5b
...
...
@@ -1621,7 +1621,7 @@ UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference < XContent >& xCo
{
Reference
<
XCommandProcessor
>
xProcessor
(
xContent
,
UNO_QUERY
);
Command
aCommand
;
aCommand
.
Name
=
OUString
(
"setPropertyValues"
)
;
aCommand
.
Name
=
"setPropertyValues"
;
aCommand
.
Handle
=
-
1
;
/* unknown */
aCommand
.
Argument
<<=
rProps
;
xProcessor
->
execute
(
aCommand
,
0
,
Reference
<
XCommandEnvironment
>
()
);
...
...
@@ -1632,7 +1632,7 @@ UcbLockBytesRef UcbLockBytes::CreateLockBytes( const Reference < XContent >& xCo
aArgument
.
Mode
=
OpenMode
::
DOCUMENT
;
Command
aCommand
;
aCommand
.
Name
=
OUString
(
"open"
)
;
aCommand
.
Name
=
"open"
;
aCommand
.
Argument
<<=
aArgument
;
Reference
<
XProgressHandler
>
xProgressHdl
=
new
ProgressHandler_Impl
(
LINK
(
&
xLockBytes
,
UcbLockBytes
,
DataAvailHdl
)
);
...
...
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