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
3107156f
Kaydet (Commit)
3107156f
authored
Haz 13, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:staticcall
Change-Id: Id440c165f6e98a7d0fe0c8c578e404db75416c48
üst
06b51293
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
slot.cxx
idl/source/objects/slot.cxx
+4
-4
command.cxx
idl/source/prj/command.cxx
+1
-1
No files found.
idl/source/objects/slot.cxx
Dosyayı görüntüle @
3107156f
...
...
@@ -1347,7 +1347,7 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
if
(
pT
)
{
rOutStm
.
WriteCharPtr
(
pT
->
GetName
().
getString
().
getStr
()
);
if
(
!
rBase
.
FindType
(
pT
,
rBase
.
aUsedTypes
)
)
if
(
!
SvIdlDataBase
::
FindType
(
pT
,
rBase
.
aUsedTypes
)
)
rBase
.
aUsedTypes
.
push_back
(
pT
);
}
else
...
...
@@ -1356,7 +1356,7 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
else
{
SvMetaType
*
pT
=
rBase
.
FindType
(
"SfxBoolItem"
);
if
(
pT
&&
!
rBase
.
FindType
(
pT
,
rBase
.
aUsedTypes
)
)
if
(
pT
&&
!
SvIdlDataBase
::
FindType
(
pT
,
rBase
.
aUsedTypes
)
)
rBase
.
aUsedTypes
.
push_back
(
pT
);
}
...
...
@@ -1435,7 +1435,7 @@ sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rO
else
pType
=
GetType
();
if
(
!
rBase
.
FindType
(
pType
,
rBase
.
aUsedTypes
)
)
if
(
!
SvIdlDataBase
::
FindType
(
pType
,
rBase
.
aUsedTypes
)
)
rBase
.
aUsedTypes
.
push_back
(
pType
);
const
SvMetaAttributeMemberList
&
rList
=
...
...
@@ -1452,7 +1452,7 @@ sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rO
.
WriteCharPtr
(
"
\"
"
).
WriteCharPtr
(
pPar
->
GetName
().
getString
().
getStr
()).
WriteCharPtr
(
"
\"
, "
)
// slot id
.
WriteCharPtr
(
pPar
->
GetSlotId
().
getString
().
getStr
()).
WriteCharPtr
(
" },"
)
<<
endl
;
if
(
!
rBase
.
FindType
(
pPType
,
rBase
.
aUsedTypes
)
)
if
(
!
SvIdlDataBase
::
FindType
(
pPType
,
rBase
.
aUsedTypes
)
)
rBase
.
aUsedTypes
.
push_back
(
pPType
);
}
return
(
sal_uInt16
)
rList
.
size
();
...
...
idl/source/prj/command.cxx
Dosyayı görüntüle @
3107156f
...
...
@@ -139,7 +139,7 @@ bool ReadIdl( SvIdlWorkingBase * pDataBase, const SvCommand & rCommand )
SvFileStream
aStm
(
aFileName
,
STREAM_STD_READ
|
STREAM_NOCREATE
);
if
(
aStm
.
GetError
()
==
SVSTREAM_OK
)
{
if
(
pDataBase
->
IsBinaryFormat
(
aStm
)
)
if
(
SvIdlDataBase
::
IsBinaryFormat
(
aStm
)
)
{
pDataBase
->
Load
(
aStm
);
if
(
aStm
.
GetError
()
!=
SVSTREAM_OK
)
...
...
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