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
abc903a5
Kaydet (Commit)
abc903a5
authored
Şub 26, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: more double dispose protection.
Change-Id: Ib5c4ca5747cd55d7ea0f8c59b5aaa1f84c2a8fdc
üst
f0969f0d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
ivctrl.cxx
svtools/source/contnr/ivctrl.cxx
+3
-3
split.cxx
vcl/source/window/split.cxx
+6
-2
syswin.cxx
vcl/source/window/syswin.cxx
+2
-0
No files found.
svtools/source/contnr/ivctrl.cxx
Dosyayı görüntüle @
abc903a5
...
...
@@ -268,12 +268,12 @@ void SvtIconChoiceCtrl::SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIc
sal_uLong
SvtIconChoiceCtrl
::
GetEntryCount
()
const
{
return
_pImp
->
GetEntryCount
()
;
return
_pImp
?
_pImp
->
GetEntryCount
()
:
0
;
}
SvxIconChoiceCtrlEntry
*
SvtIconChoiceCtrl
::
GetEntry
(
sal_uLong
nPos
)
const
{
return
_pImp
->
GetEntry
(
nPos
)
;
return
_pImp
?
_pImp
->
GetEntry
(
nPos
)
:
NULL
;
}
void
SvtIconChoiceCtrl
::
CreateAutoMnemonics
(
MnemonicGenerator
&
_rUsedMnemonics
)
...
...
@@ -283,7 +283,7 @@ void SvtIconChoiceCtrl::CreateAutoMnemonics( MnemonicGenerator& _rUsedMnemonics
SvxIconChoiceCtrlEntry
*
SvtIconChoiceCtrl
::
GetSelectedEntry
(
sal_uLong
&
rPos
)
const
{
return
_pImp
->
GetFirstSelectedEntry
(
rPos
)
;
return
_pImp
?
_pImp
->
GetFirstSelectedEntry
(
rPos
)
:
NULL
;
}
void
SvtIconChoiceCtrl
::
ClickIcon
()
...
...
vcl/source/window/split.cxx
Dosyayı görüntüle @
abc903a5
...
...
@@ -156,8 +156,12 @@ Splitter::~Splitter()
void
Splitter
::
dispose
()
{
TaskPaneList
*
pTList
=
GetSystemWindow
()
->
GetTaskPaneList
();
pTList
->
RemoveWindow
(
this
);
SystemWindow
*
pSysWin
=
GetSystemWindow
();
if
(
pSysWin
)
{
TaskPaneList
*
pTList
=
pSysWin
->
GetTaskPaneList
();
pTList
->
RemoveWindow
(
this
);
}
Window
::
dispose
();
}
...
...
vcl/source/window/syswin.cxx
Dosyayı görüntüle @
abc903a5
...
...
@@ -185,6 +185,8 @@ bool SystemWindow::PreNotify( NotifyEvent& rNEvt )
TaskPaneList
*
SystemWindow
::
GetTaskPaneList
()
{
if
(
!
mpImplData
)
return
NULL
;
if
(
mpImplData
->
mpTaskPaneList
)
return
mpImplData
->
mpTaskPaneList
;
else
...
...
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