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
af92c600
Kaydet (Commit)
af92c600
authored
Şub 08, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
catch exceptions by const ref
Change-Id: Icaa4095b2032fa87f8ed4982940ba2a166665cef
üst
0aa5b439
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
tdmgr.cxx
stoc/source/tdmanager/tdmgr.cxx
+5
-5
No files found.
stoc/source/tdmanager/tdmgr.cxx
Dosyayı görüntüle @
af92c600
...
...
@@ -314,10 +314,10 @@ void ManagerImpl::initialize(
{
insert
(
makeAny
(
xHA
)
);
}
catch
(
IllegalArgumentException
&
)
catch
(
const
IllegalArgumentException
&
)
{
}
catch
(
ElementExistException
&
)
catch
(
const
ElementExistException
&
)
{
}
}
...
...
@@ -490,7 +490,7 @@ void SAL_CALL ManagerImpl::insert( const Any & rElement )
}
}
}
catch
(
container
::
NoSuchElementException
&
)
catch
(
con
st
con
tainer
::
NoSuchElementException
&
)
{
// type not in: ok
}
...
...
@@ -1095,7 +1095,7 @@ Any ManagerImpl::getByHierarchicalName( const OUString & rName )
break
;
}
}
catch
(
NoSuchElementException
&
)
catch
(
const
NoSuchElementException
&
)
{
}
}
...
...
@@ -1121,7 +1121,7 @@ sal_Bool ManagerImpl::hasByHierarchicalName( const OUString & rName )
{
return
getByHierarchicalName
(
rName
).
hasValue
();
}
catch
(
NoSuchElementException
&
)
catch
(
const
NoSuchElementException
&
)
{
}
return
sal_False
;
...
...
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