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
4e0129e7
Kaydet (Commit)
4e0129e7
authored
Nis 11, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#708157 Uninitialized scalar field
Change-Id: I9d798c8b6472241dc7d16e3d7b52653ad0d76654
üst
39ae696f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
shell.cxx
sfx2/source/control/shell.cxx
+12
-11
No files found.
sfx2/source/control/shell.cxx
Dosyayı görüntüle @
4e0129e7
...
...
@@ -94,7 +94,18 @@ struct SfxShell_Impl: public SfxBroadcaster
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
embed
::
VerbDescriptor
>
aVerbList
;
::
sfx2
::
sidebar
::
ContextChangeBroadcaster
maContextChangeBroadcaster
;
SfxShell_Impl
()
:
pViewSh
(
0
),
pFrame
(
0
),
pRepeatTarget
(
0
),
pExecuter
(
0
),
pUpdater
(
0
)
{}
SfxShell_Impl
()
:
pViewSh
(
0
)
,
pFrame
(
0
)
,
pRepeatTarget
(
0
)
,
bActive
(
false
)
,
nDisableFlags
(
0
)
,
nHelpId
(
0
)
,
pExecuter
(
0
)
,
pUpdater
(
0
)
{
}
virtual
~
SfxShell_Impl
()
{
delete
pExecuter
;
delete
pUpdater
;}
};
...
...
@@ -124,12 +135,6 @@ SfxShell::SfxShell()
pUndoMgr
(
0
)
{
pImp
=
new
SfxShell_Impl
;
pImp
->
pViewSh
=
0
;
pImp
->
pFrame
=
0
;
pImp
->
pRepeatTarget
=
0
;
pImp
->
nHelpId
=
0L
;
pImp
->
bActive
=
false
;
pImp
->
nDisableFlags
=
0
;
}
...
...
@@ -149,10 +154,6 @@ SfxShell::SfxShell( SfxViewShell *pViewSh )
{
pImp
=
new
SfxShell_Impl
;
pImp
->
pViewSh
=
pViewSh
;
pImp
->
pFrame
=
0
;
pImp
->
pRepeatTarget
=
0
;
pImp
->
nHelpId
=
0L
;
pImp
->
bActive
=
false
;
}
...
...
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