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
0e5c7d0b
Kaydet (Commit)
0e5c7d0b
authored
Ock 21, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bool improvements
Change-Id: Iddc92e42a100a0fb36c77c21d4c176dded8f3391
üst
9e1ec4df
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
dispatchwatcher.cxx
desktop/source/app/dispatchwatcher.cxx
+4
-4
dp_misc.cxx
desktop/source/deployment/misc/dp_misc.cxx
+1
-1
jvmfwk.cxx
desktop/source/migration/services/jvmfwk.cxx
+2
-2
No files found.
desktop/source/app/dispatchwatcher.cxx
Dosyayı görüntüle @
0e5c7d0b
...
...
@@ -277,12 +277,12 @@ sal_Bool DispatchWatcher::executeDispatchRequests( const DispatchList& aDispatch
Reference
<
XDispatch
>
xDispatcher
;
Reference
<
XURLTransformer
>
xParser
(
URLTransformer
::
create
(
::
comphelper
::
getProcessComponentContext
())
);
if
(
xParser
.
is
()
==
sal_True
)
if
(
xParser
.
is
()
)
xParser
->
parseStrict
(
aURL
);
xDispatcher
=
xDesktop
->
queryDispatch
(
aURL
,
OUString
(),
0
);
if
(
xDispatcher
.
is
()
==
sal_True
)
if
(
xDispatcher
.
is
()
)
{
{
::
osl
::
ClearableMutexGuard
aGuard
(
GetMutex
()
);
...
...
@@ -305,12 +305,12 @@ sal_Bool DispatchWatcher::executeDispatchRequests( const DispatchList& aDispatch
Reference
<
XDispatch
>
xDispatcher
;
Reference
<
XURLTransformer
>
xParser
(
URLTransformer
::
create
(
::
comphelper
::
getProcessComponentContext
())
);
if
(
xParser
.
is
()
==
sal_True
)
if
(
xParser
.
is
()
)
xParser
->
parseStrict
(
aURL
);
xDispatcher
=
xDesktop
->
queryDispatch
(
aURL
,
OUString
(),
0
);
if
(
xDispatcher
.
is
()
==
sal_True
)
if
(
xDispatcher
.
is
()
)
{
try
{
...
...
desktop/source/deployment/misc/dp_misc.cxx
Dosyayı görüntüle @
0e5c7d0b
...
...
@@ -563,7 +563,7 @@ void syncRepositories(
if
(
restarter
.
is
())
{
OSL_TRACE
(
"Request restart for modified extensions manager"
);
restarter
->
requestRestart
(
xCmdEnv
.
is
()
==
sal_True
?
xCmdEnv
->
getInteractionHandler
()
:
restarter
->
requestRestart
(
xCmdEnv
.
is
()
?
xCmdEnv
->
getInteractionHandler
()
:
Reference
<
task
::
XInteractionHandler
>
());
}
}
...
...
desktop/source/migration/services/jvmfwk.cxx
Dosyayı görüntüle @
0e5c7d0b
...
...
@@ -418,7 +418,7 @@ void SAL_CALL JavaMigration::setPropertyValue(
case
ENABLE_JAVA
:
{
sal_Bool
val
=
sal_Bool
();
if
(
(
aValue
>>=
val
)
==
sal_False
)
if
(
!
(
aValue
>>=
val
)
)
throw
MalformedDataException
(
OUString
(
"[Service implementation "
)
+
IMPL_NAME
+
"] XLayerHandler::setPropertyValue received wrong type for Enable property"
,
0
,
Any
());
...
...
@@ -432,7 +432,7 @@ void SAL_CALL JavaMigration::setPropertyValue(
case
USER_CLASS_PATH
:
{
OUString
cp
;
if
(
(
aValue
>>=
cp
)
==
sal_False
)
if
(
!
(
aValue
>>=
cp
)
)
throw
MalformedDataException
(
OUString
(
"[Service implementation "
)
+
IMPL_NAME
+
"] XLayerHandler::setPropertyValue received wrong type for UserClassPath property"
,
0
,
Any
());
...
...
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