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
af8c7599
Kaydet (Commit)
af8c7599
authored
Şub 09, 2013
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
embeddedobj: log some exceptions
Change-Id: I2e565bc6e57f7bf59fdd6eb5fc577e0b3d58b9f6
üst
ca8ac449
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
4 deletions
+18
-4
oleembed.cxx
embeddedobj/source/msole/oleembed.cxx
+3
-1
ownview.cxx
embeddedobj/source/msole/ownview.cxx
+3
-1
log-areas.dox
sal/inc/sal/log-areas.dox
+5
-0
ipclient.cxx
sfx2/source/view/ipclient.cxx
+7
-2
No files found.
embeddedobj/source/msole/oleembed.cxx
Dosyayı görüntüle @
af8c7599
...
@@ -854,8 +854,10 @@ void SAL_CALL OleEmbeddedObject::doVerb( sal_Int32 nVerbID )
...
@@ -854,8 +854,10 @@ void SAL_CALL OleEmbeddedObject::doVerb( sal_Int32 nVerbID )
{
{
throw
;
throw
;
}
}
catch
(
uno
::
Exception
&
)
catch
(
uno
::
Exception
const
&
e
)
{
{
SAL_WARN
(
"embeddedobj.ole"
,
"OleEmbeddedObject::doVerb: "
"-9 fallback path: exception caught: "
<<
e
.
Message
);
}
}
}
}
...
...
embeddedobj/source/msole/ownview.cxx
Dosyayı görüntüle @
af8c7599
...
@@ -167,8 +167,10 @@ sal_Bool OwnView_Impl::CreateModelFromURL( const ::rtl::OUString& aFileURL )
...
@@ -167,8 +167,10 @@ sal_Bool OwnView_Impl::CreateModelFromURL( const ::rtl::OUString& aFileURL )
}
}
}
}
}
}
catch
(
const
uno
::
Exception
&
)
catch
(
uno
::
Exception
const
&
e
)
{
{
SAL_WARN
(
"embeddedobj.ole"
,
"OwnView_Impl::CreateModelFromURL:"
" exception caught: "
<<
e
.
Message
);
}
}
}
}
...
...
sal/inc/sal/log-areas.dox
Dosyayı görüntüle @
af8c7599
...
@@ -75,6 +75,11 @@ certain functionality.
...
@@ -75,6 +75,11 @@ certain functionality.
@li @c editeng
@li @c editeng
@li @c editeng.items
@li @c editeng.items
@section embeddedobj
@li @c embeddedobj - embedded objects
@li @c embeddedobj.ole - OLE embedded objects
@section extensions
@section extensions
@li @c extensions.plugin
@li @c extensions.plugin
...
...
sfx2/source/view/ipclient.cxx
Dosyayı görüntüle @
af8c7599
...
@@ -971,8 +971,11 @@ ErrCode SfxInPlaceClient::DoVerb( long nVerb )
...
@@ -971,8 +971,11 @@ ErrCode SfxInPlaceClient::DoVerb( long nVerb )
m_pImp
->
m_aScaleHeight
=
Fraction
(
aScaledArea
.
GetHeight
(),
aNewSize
.
Height
()
);
m_pImp
->
m_aScaleHeight
=
Fraction
(
aScaledArea
.
GetHeight
(),
aNewSize
.
Height
()
);
}
}
}
}
catch
(
uno
::
Exception
&
)
catch
(
uno
::
Exception
const
&
e
)
{
{
SAL_WARN
(
"embeddedobj"
,
"SfxInPlaceClient::DoVerb:"
" -9 fallback path: exception caught: "
<<
e
.
Message
);
nError
=
ERRCODE_SO_GENERALERROR
;
nError
=
ERRCODE_SO_GENERALERROR
;
}
}
}
}
...
@@ -982,8 +985,10 @@ ErrCode SfxInPlaceClient::DoVerb( long nVerb )
...
@@ -982,8 +985,10 @@ ErrCode SfxInPlaceClient::DoVerb( long nVerb )
// TODO/LATER: it would be nice to be able to provide the current target state outside
// TODO/LATER: it would be nice to be able to provide the current target state outside
nError
=
ERRCODE_SO_CANNOT_DOVERB_NOW
;
nError
=
ERRCODE_SO_CANNOT_DOVERB_NOW
;
}
}
catch
(
uno
::
Exception
&
)
catch
(
uno
::
Exception
const
&
e
)
{
{
SAL_WARN
(
"embeddedobj"
,
"SfxInPlaceClient::DoVerb:"
" exception caught: "
<<
e
.
Message
);
nError
=
ERRCODE_SO_GENERALERROR
;
nError
=
ERRCODE_SO_GENERALERROR
;
//TODO/LATER: better error handling
//TODO/LATER: better error handling
}
}
...
...
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