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
ecc9fc12
Kaydet (Commit)
ecc9fc12
authored
Tem 16, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I1ad92d1496759007f770b86f9d24e322b3ae194b
üst
891c80e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
ocomponentenumeration.cxx
framework/source/helper/ocomponentenumeration.cxx
+1
-1
frame.cxx
framework/source/services/frame.cxx
+1
-4
No files found.
framework/source/helper/ocomponentenumeration.cxx
Dosyayı görüntüle @
ecc9fc12
...
@@ -79,7 +79,7 @@ Any SAL_CALL OComponentEnumeration::nextElement() throw( NoSuchElementExcepti
...
@@ -79,7 +79,7 @@ Any SAL_CALL OComponentEnumeration::nextElement() throw( NoSuchElementExcepti
SolarMutexGuard
g
;
SolarMutexGuard
g
;
// If we have no elements or end of enumeration is arrived ...
// If we have no elements or end of enumeration is arrived ...
if
(
hasMoreElements
()
==
sal_False
)
if
(
!
hasMoreElements
()
)
{
{
// .. throw an exception!
// .. throw an exception!
throw
NoSuchElementException
();
throw
NoSuchElementException
();
...
...
framework/source/services/frame.cxx
Dosyayı görüntüle @
ecc9fc12
...
@@ -733,10 +733,7 @@ void SAL_CALL Frame::setActiveFrame( const css::uno::Reference< css::frame::XFra
...
@@ -733,10 +733,7 @@ void SAL_CALL Frame::setActiveFrame( const css::uno::Reference< css::frame::XFra
// If last active frame was active ...
// If last active frame was active ...
// but new one is not it ...
// but new one is not it ...
// ... set it as active one.
// ... set it as active one.
if
(
if
(
eActiveState
==
E_ACTIVE
&&
!
xFrame
->
isActive
()
)
(
eActiveState
==
E_ACTIVE
)
&&
(
xFrame
->
isActive
()
==
sal_False
)
)
{
{
xFrame
->
activate
();
xFrame
->
activate
();
}
}
...
...
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