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
739f3a5c
Kaydet (Commit)
739f3a5c
authored
Mar 18, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mend misc. lifecycle breakage.
Change-Id: I6e960db9659f5122a45c4cf173e680bb782acf76
üst
f583322c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
13 deletions
+19
-13
mediawindow_impl.cxx
avmedia/source/viewer/mediawindow_impl.cxx
+2
-0
ViewShellBase.cxx
sd/source/ui/view/ViewShellBase.cxx
+2
-2
drviewsa.cxx
sd/source/ui/view/drviewsa.cxx
+2
-0
viewshel.cxx
sd/source/ui/view/viewshel.cxx
+8
-2
tabbar.cxx
svtools/source/control/tabbar.cxx
+5
-9
No files found.
avmedia/source/viewer/mediawindow_impl.cxx
Dosyayı görüntüle @
739f3a5c
...
...
@@ -508,12 +508,14 @@ void MediaWindowImpl::onURLChanged()
{
if
(
m_sMimeType
==
AVMEDIA_MIMETYPE_COMMON
)
{
mpChildWindow
.
disposeAndClear
();
mpChildWindow
.
reset
(
new
MediaChildWindow
(
this
)
);
}
#if HAVE_FEATURE_GLTF
else
if
(
m_sMimeType
==
AVMEDIA_MIMETYPE_JSON
)
{
SystemWindowData
aWinData
=
OpenGLContext
::
generateWinData
(
this
,
false
);
mpChildWindow
.
disposeAndClear
();
mpChildWindow
.
reset
(
new
MediaChildWindow
(
this
,
&
aWinData
));
mbEventTransparent
=
false
;
}
...
...
sd/source/ui/view/ViewShellBase.cxx
Dosyayı görüntüle @
739f3a5c
...
...
@@ -240,7 +240,7 @@ ViewShellBase::ViewShellBase (
mpDocument
(
NULL
)
{
mpImpl
.
reset
(
new
Implementation
(
*
this
));
mpImpl
->
mpViewWindow
.
reset
(
new
FocusForwardingWindow
(
_pFrame
->
GetWindow
(),
*
this
)
);
mpImpl
->
mpViewWindow
=
new
FocusForwardingWindow
(
_pFrame
->
GetWindow
(),
*
this
);
mpImpl
->
mpViewWindow
->
SetBackground
(
Wallpaper
());
_pFrame
->
GetWindow
().
SetBackground
(
Application
::
GetSettings
().
GetStyleSettings
().
GetLightColor
());
...
...
@@ -1028,7 +1028,7 @@ ViewShellBase::Implementation::~Implementation (void)
{
mpController
=
NULL
;
mpViewTabBar
=
NULL
;
mpViewWindow
.
reset
();
mpViewWindow
.
disposeAndClear
();
mpToolBarManager
.
reset
();
}
...
...
sd/source/ui/view/drviewsa.cxx
Dosyayı görüntüle @
739f3a5c
...
...
@@ -191,6 +191,8 @@ DrawViewShell::~DrawViewShell()
mpFrameView
->
Disconnect
();
delete
[]
mpSlotArray
;
maTabControl
.
disposeAndClear
();
}
/**
...
...
sd/source/ui/view/viewshel.cxx
Dosyayı görüntüle @
739f3a5c
...
...
@@ -151,7 +151,7 @@ ViewShell::~ViewShell()
delete
mpZoomList
;
mpLayerTabBar
.
reset
();
mpLayerTabBar
.
disposeAndClear
();
if
(
mpImpl
->
mpSubShellFactory
.
get
()
!=
NULL
)
GetViewShellBase
().
GetViewShellManager
()
->
RemoveSubShellFactory
(
...
...
@@ -163,8 +163,14 @@ ViewShell::~ViewShell()
"sd.ui"
,
"destroying mpContentWindow at "
<<
mpContentWindow
.
get
()
<<
" with parent "
<<
mpContentWindow
->
GetParent
());
mpContentWindow
.
reset
();
mpContentWindow
.
disposeAndClear
();
}
mpScrollBarBox
.
disposeAndClear
();
mpVerticalRuler
.
disposeAndClear
();
mpHorizontalRuler
.
disposeAndClear
();
mpVerticalScrollBar
.
disposeAndClear
();
mpHorizontalScrollBar
.
disposeAndClear
();
}
/**
...
...
svtools/source/control/tabbar.cxx
Dosyayı görüntüle @
739f3a5c
...
...
@@ -338,15 +338,7 @@ struct TabBar_Impl
svt
::
AccessibleFactoryAccess
maAccessibleFactory
;
TabBar_Impl
()
:
mpSizer
()
,
mpFirstButton
()
,
mpPrevButton
()
,
mpNextButton
()
,
mpLastButton
()
,
mpEdit
()
,
mpItemList
()
{}
TabBar_Impl
()
{}
~
TabBar_Impl
()
{
...
...
@@ -367,6 +359,10 @@ struct TabBar_Impl
{
return
static_cast
<
sal_uInt16
>
(
mpItemList
.
size
());
}
~
TabBar_Impl
()
{
mpSizer
.
disposeAndClear
();
}
};
TabBar
::
TabBar
(
vcl
::
Window
*
pParent
,
WinBits
nWinStyle
)
:
...
...
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