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
ab8ab831
Kaydet (Commit)
ab8ab831
authored
Haz 02, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
catch by const reference
üst
9e0165c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
imagemanagerimpl.cxx
framework/source/uiconfiguration/imagemanagerimpl.cxx
+16
-16
No files found.
framework/source/uiconfiguration/imagemanagerimpl.cxx
Dosyayı görüntüle @
ab8ab831
...
...
@@ -207,7 +207,7 @@ void CmdImageList::impl_fillCommandToImageNameMap()
if
(
xCmdDesc
.
is
()
)
xCmdDesc
->
getByName
(
aCommandImageList
)
>>=
aCmdImageSeq
;
}
catch
(
NoSuchElementException
&
)
catch
(
const
NoSuchElementException
&
)
{
// Module unknown we will work with an empty command image list!
return
;
...
...
@@ -220,10 +220,10 @@ void CmdImageList::impl_fillCommandToImageNameMap()
{
xCmdDesc
->
getByName
(
aCommandImageList
)
>>=
aCmdImageSeq
;
}
catch
(
NoSuchElementException
&
)
catch
(
const
NoSuchElementException
&
)
{
}
catch
(
WrappedTargetException
&
)
catch
(
const
WrappedTargetException
&
)
{
}
}
...
...
@@ -468,19 +468,19 @@ void ImageManagerImpl::implts_initialize()
nModes
);
}
}
catch
(
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
catch
(
co
nst
::
co
m
::
sun
::
star
::
container
::
NoSuchElementException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
embed
::
InvalidStorageException
&
)
catch
(
const
::
com
::
sun
::
star
::
embed
::
InvalidStorageException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
&
)
catch
(
const
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
io
::
IOException
&
)
catch
(
const
::
com
::
sun
::
star
::
io
::
IOException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
embed
::
StorageWrappedTargetException
&
)
catch
(
const
::
com
::
sun
::
star
::
embed
::
StorageWrappedTargetException
&
)
{
}
}
...
...
@@ -542,19 +542,19 @@ sal_Bool ImageManagerImpl::implts_loadUserImages(
}
}
}
catch
(
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
catch
(
co
nst
::
co
m
::
sun
::
star
::
container
::
NoSuchElementException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
embed
::
InvalidStorageException
&
)
catch
(
const
::
com
::
sun
::
star
::
embed
::
InvalidStorageException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
&
)
catch
(
const
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
io
::
IOException
&
)
catch
(
const
::
com
::
sun
::
star
::
io
::
IOException
&
)
{
}
catch
(
::
com
::
sun
::
star
::
embed
::
StorageWrappedTargetException
&
)
catch
(
const
::
com
::
sun
::
star
::
embed
::
StorageWrappedTargetException
&
)
{
}
}
...
...
@@ -641,7 +641,7 @@ sal_Bool ImageManagerImpl::implts_storeUserImages(
{
xUserImageStorage
->
removeElement
(
rtl
::
OUString
::
createFromAscii
(
IMAGELIST_XML_FILE
[
nImageType
]
));
}
catch
(
::
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
catch
(
const
::
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
{
}
...
...
@@ -649,7 +649,7 @@ sal_Bool ImageManagerImpl::implts_storeUserImages(
{
xUserBitmapsStorage
->
removeElement
(
rtl
::
OUString
::
createFromAscii
(
BITMAP_FILE_NAMES
[
nImageType
]
));
}
catch
(
::
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
catch
(
const
::
com
::
sun
::
star
::
container
::
NoSuchElementException
&
)
{
}
...
...
@@ -1436,7 +1436,7 @@ void ImageManagerImpl::implts_notifyContainerListener( const ConfigurationEvent&
break
;
}
}
catch
(
css
::
uno
::
RuntimeException
&
)
catch
(
c
onst
c
ss
::
uno
::
RuntimeException
&
)
{
pIterator
.
remove
();
}
...
...
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