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
cdddbf19
Kaydet (Commit)
cdddbf19
authored
Şub 10, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1079007 Uncaught exception
Change-Id: Ic4b1805809aa0a2a78007d5808fd8ae6097b080f
üst
02386ef8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
8 deletions
+16
-8
xmlimp.hxx
include/xmloff/xmlimp.hxx
+4
-2
xmlimprt.cxx
sc/source/filter/xml/xmlimprt.cxx
+4
-2
xmlimprt.hxx
sc/source/filter/xml/xmlimprt.hxx
+4
-2
xmlimp.cxx
xmloff/source/core/xmlimp.cxx
+4
-2
No files found.
include/xmloff/xmlimp.hxx
Dosyayı görüntüle @
cdddbf19
...
@@ -197,8 +197,10 @@ public:
...
@@ -197,8 +197,10 @@ public:
// ::com::sun::star::xml::sax::XDocumentHandler
// ::com::sun::star::xml::sax::XDocumentHandler
virtual
void
SAL_CALL
startDocument
(
void
)
virtual
void
SAL_CALL
startDocument
(
void
)
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
endDocument
(
void
)
virtual
void
SAL_CALL
endDocument
()
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
SAL_CALL
startElement
(
const
OUString
&
aName
,
virtual
void
SAL_CALL
startElement
(
const
OUString
&
aName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>
&
xAttribs
)
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>
&
xAttribs
)
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
sc/source/filter/xml/xmlimprt.cxx
Dosyayı görüntüle @
cdddbf19
...
@@ -3177,8 +3177,10 @@ void ScXMLImport::SetSheetNamedRanges()
...
@@ -3177,8 +3177,10 @@ void ScXMLImport::SetSheetNamedRanges()
}
}
}
}
void
SAL_CALL
ScXMLImport
::
endDocument
(
void
)
void
SAL_CALL
ScXMLImport
::
endDocument
()
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
ScXMLImport
::
MutexGuard
aGuard
(
*
this
);
ScXMLImport
::
MutexGuard
aGuard
(
*
this
);
if
(
getImportFlags
()
&
IMPORT_CONTENT
)
if
(
getImportFlags
()
&
IMPORT_CONTENT
)
...
...
sc/source/filter/xml/xmlimprt.hxx
Dosyayı görüntüle @
cdddbf19
...
@@ -1178,8 +1178,10 @@ public:
...
@@ -1178,8 +1178,10 @@ public:
virtual
void
SAL_CALL
startDocument
(
void
)
virtual
void
SAL_CALL
startDocument
(
void
)
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
endDocument
(
void
)
virtual
void
SAL_CALL
endDocument
()
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
xml
::
sax
::
SAXException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
DisposingModel
();
virtual
void
DisposingModel
();
...
...
xmloff/source/core/xmlimp.cxx
Dosyayı görüntüle @
cdddbf19
...
@@ -502,8 +502,10 @@ void SAL_CALL SvXMLImport::startDocument( void )
...
@@ -502,8 +502,10 @@ void SAL_CALL SvXMLImport::startDocument( void )
}
}
}
}
void
SAL_CALL
SvXMLImport
::
endDocument
(
void
)
void
SAL_CALL
SvXMLImport
::
endDocument
()
throw
(
xml
::
sax
::
SAXException
,
uno
::
RuntimeException
)
throw
(
xml
::
sax
::
SAXException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
SAL_INFO
(
"xmloff.core"
,
"} SvXMLImport::startDocument"
);
SAL_INFO
(
"xmloff.core"
,
"} SvXMLImport::startDocument"
);
// #i9518# All the stuff that accesses the document has to be done here, not in the dtor,
// #i9518# All the stuff that accesses the document has to be done here, not in the dtor,
...
...
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