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
f58c49b3
Kaydet (Commit)
f58c49b3
authored
Şub 02, 2012
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some cppcheck cleaning
üst
beccf7c9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
17 deletions
+17
-17
globalacceleratorconfiguration.cxx
...rk/source/accelerators/globalacceleratorconfiguration.cxx
+2
-2
moduleacceleratorconfiguration.cxx
...rk/source/accelerators/moduleacceleratorconfiguration.cxx
+2
-2
presethandler.cxx
framework/source/accelerators/presethandler.cxx
+6
-6
autorecovery.cxx
framework/source/services/autorecovery.cxx
+5
-5
unoshcol.cxx
svx/source/unodraw/unoshcol.cxx
+2
-2
No files found.
framework/source/accelerators/globalacceleratorconfiguration.cxx
Dosyayı görüntüle @
f58c49b3
...
...
@@ -119,8 +119,8 @@ void GlobalAcceleratorConfiguration::impl_ts_fillCache()
m_xCfgListener
=
new
WeakChangesListener
(
this
);
xBroadcaster
->
addChangesListener
(
m_xCfgListener
);
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
)
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{}
}
...
...
framework/source/accelerators/moduleacceleratorconfiguration.cxx
Dosyayı görüntüle @
f58c49b3
...
...
@@ -153,8 +153,8 @@ void ModuleAcceleratorConfiguration::impl_ts_fillCache()
m_xCfgListener
=
new
WeakChangesListener
(
this
);
xBroadcaster
->
addChangesListener
(
m_xCfgListener
);
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
)
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{}
}
...
...
framework/source/accelerators/presethandler.cxx
Dosyayı görüntüle @
f58c49b3
...
...
@@ -501,8 +501,8 @@ void PresetHandler::connectToResource( PresetHandler::EConfigType
xUser
=
m_lDocumentStorages
.
openPath
(
sRelPathUser
,
eUserMode
);
xShare
=
xUser
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
)
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{
xShare
.
clear
();
xUser
.
clear
();
}
}
...
...
@@ -822,8 +822,8 @@ css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openPathIgnoring
else
xPath
=
m_aSharedStorages
->
m_lStoragesUser
.
openPath
(
sPath
,
eMode
);
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
)
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{
xPath
.
clear
();
}
return
xPath
;
...
...
@@ -921,8 +921,8 @@ css::uno::Reference< css::embed::XStorage > PresetHandler::impl_openLocalizedPat
if
(
xFolder
->
isStorageElement
(
pNames
[
i
]))
lSubFolders
.
push_back
(
pNames
[
i
]);
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
catch
(
const
css
::
uno
::
RuntimeException
&
)
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{}
}
...
...
framework/source/services/autorecovery.cxx
Dosyayı görüntüle @
f58c49b3
...
...
@@ -1336,7 +1336,7 @@ void AutoRecovery::implts_flushConfigItem(const AutoRecovery::TDocumentInfo& rIn
nRetry
=
0
;
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
catch
(
const
css
::
uno
::
Exception
&
)
{
// a) FULL DISC seams to be the problem behind => show error and retry it forever (e.g. retry=300)
// b) unknown problem (may be locking problem) => reset RETRY value to more usefull value(!) (e.g. retry=3)
...
...
@@ -1355,7 +1355,7 @@ void AutoRecovery::implts_flushConfigItem(const AutoRecovery::TDocumentInfo& rIn
nRetry
=
RETRY_STORE_ON_MIGHT_FULL_DISC_USEFULL
;
else
if
(
nRetry
<=
GIVE_UP_RETRY
)
throw
ex
;
// force stacktrace to know if there exist might other reasons, why an AutoSave can fail !!!
throw
;
// force stacktrace to know if there exist might other reasons, why an AutoSave can fail !!!
--
nRetry
;
}
...
...
@@ -2374,7 +2374,7 @@ void AutoRecovery::implts_saveOneDoc(const ::rtl::OUString&
bError
=
sal_False
;
nRetry
=
0
;
}
catch
(
const
css
::
uno
::
Exception
&
ex
)
catch
(
const
css
::
uno
::
Exception
&
)
{
bError
=
sal_True
;
...
...
@@ -2395,7 +2395,7 @@ void AutoRecovery::implts_saveOneDoc(const ::rtl::OUString&
nRetry
=
RETRY_STORE_ON_MIGHT_FULL_DISC_USEFULL
;
else
if
(
nRetry
<=
GIVE_UP_RETRY
)
throw
ex
;
// force stacktrace to know if there exist might other reasons, why an AutoSave can fail !!!
throw
;
// force stacktrace to know if there exist might other reasons, why an AutoSave can fail !!!
--
nRetry
;
}
...
...
@@ -3444,7 +3444,7 @@ void AutoRecovery::implts_verifyCacheAgainstDesktopDocumentList()
}
}
catch
(
const
css
::
uno
::
RuntimeException
&
exRun
)
{
throw
exRun
;
}
{
throw
;
}
catch
(
const
css
::
uno
::
Exception
&
)
{}
...
...
svx/source/unodraw/unoshcol.cxx
Dosyayı görüntüle @
f58c49b3
...
...
@@ -137,14 +137,14 @@ void SvxShapeCollection::dispose()
// notify subclasses to do their dispose
disposing
();
}
catch
(
const
::
com
::
sun
::
star
::
uno
::
Exception
&
e
)
catch
(
const
::
com
::
sun
::
star
::
uno
::
Exception
&
)
{
// catch exception and throw again but signal that
// the object was disposed. Dispose should be called
// only once.
mrBHelper
.
bDisposed
=
sal_True
;
mrBHelper
.
bInDispose
=
sal_False
;
throw
e
;
throw
;
}
// the values bDispose and bInDisposing must set in this order.
...
...
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