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
a7fcb3ed
Kaydet (Commit)
a7fcb3ed
authored
Haz 26, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
clang: Returning null reference
Change-Id: I2cfc14e73696a027283dfa5eef98f784505dc5a3
üst
2daceb87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
sbunoobj.cxx
basic/source/classes/sbunoobj.cxx
+5
-3
xmlexchg.cxx
svx/source/fmcomp/xmlexchg.cxx
+2
-5
No files found.
basic/source/classes/sbunoobj.cxx
Dosyayı görüntüle @
a7fcb3ed
...
@@ -2597,10 +2597,12 @@ SbxInfo* SbUnoMethod::GetInfo()
...
@@ -2597,10 +2597,12 @@ SbxInfo* SbUnoMethod::GetInfo()
const
Sequence
<
ParamInfo
>&
SbUnoMethod
::
getParamInfos
(
void
)
const
Sequence
<
ParamInfo
>&
SbUnoMethod
::
getParamInfos
(
void
)
{
{
if
(
!
pParamInfoSeq
&&
m_xUnoMethod
.
is
()
)
if
(
!
pParamInfoSeq
)
{
{
Sequence
<
ParamInfo
>
aTmp
=
m_xUnoMethod
->
getParameterInfos
()
;
Sequence
<
ParamInfo
>
aTmp
;
pParamInfoSeq
=
new
Sequence
<
ParamInfo
>
(
aTmp
);
if
(
m_xUnoMethod
.
is
())
aTmp
=
m_xUnoMethod
->
getParameterInfos
();
pParamInfoSeq
=
new
Sequence
<
ParamInfo
>
(
aTmp
);
}
}
return
*
pParamInfoSeq
;
return
*
pParamInfoSeq
;
}
}
...
...
svx/source/fmcomp/xmlexchg.cxx
Dosyayı görüntüle @
a7fcb3ed
...
@@ -59,13 +59,10 @@ namespace svx
...
@@ -59,13 +59,10 @@ namespace svx
using
namespace
::
com
::
sun
::
star
::
datatransfer
;
using
namespace
::
com
::
sun
::
star
::
datatransfer
;
Reference
<
XTransferable
>
&
transfer
=
const_cast
<
Reference
<
XTransferable
>
&>
(
_rData
.
GetTransferable
());
Reference
<
XTransferable
>
&
transfer
=
const_cast
<
Reference
<
XTransferable
>
&>
(
_rData
.
GetTransferable
());
XTransferable
*
pInterface
=
transfer
.
get
();
XTransferable
*
pInterface
=
transfer
.
get
();
OXFormsTransferable
*
pThis
=
dynamic_cast
<
OXFormsTransferable
*>
(
pInterface
);
OXFormsTransferable
&
rThis
=
dynamic_cast
<
OXFormsTransferable
&>
(
*
pInterface
);
DBG_ASSERT
(
pThis
,
"XTransferable is NOT an OXFormsTransferable???"
);
return
rThis
.
m_aDescriptor
;
return
pThis
->
m_aDescriptor
;
}
}
}
// namespace svx
}
// namespace svx
...
...
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