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
d72a2899
Kaydet (Commit)
d72a2899
authored
Ock 15, 2018
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:useuniqueptr in VCLXWindow
Change-Id: Iefec174c7dc3dbd52bdb9f6d7ebe6c8c42c031e9
üst
474b4bbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
vclxwindow.hxx
include/toolkit/awt/vclxwindow.hxx
+2
-1
vclxwindow.cxx
toolkit/source/awt/vclxwindow.cxx
+2
-2
No files found.
include/toolkit/awt/vclxwindow.hxx
Dosyayı görüntüle @
d72a2899
...
...
@@ -44,6 +44,7 @@
#include <tools/link.hxx>
#include <stdarg.h>
#include <memory>
#include <vector>
#include <functional>
...
...
@@ -76,7 +77,7 @@ typedef cppu::ImplInheritanceHelper< VCLXDevice,
class
TOOLKIT_DLLPUBLIC
VCLXWindow
:
public
VCLXWindow_Base
{
private
:
VCLXWindowImpl
*
mpImpl
;
std
::
unique_ptr
<
VCLXWindowImpl
>
mpImpl
;
UnoPropertyArrayHelper
*
GetPropHelper
();
...
...
toolkit/source/awt/vclxwindow.cxx
Dosyayı görüntüle @
d72a2899
...
...
@@ -328,12 +328,12 @@ void ImplInitWindowEvent( css::awt::WindowEvent& rEvent, vcl::Window const * pWi
VCLXWindow
::
VCLXWindow
(
bool
_bWithDefaultProps
)
:
mpImpl
(
nullptr
)
{
mpImpl
=
new
VCLXWindowImpl
(
*
this
,
_bWithDefaultProps
);
mpImpl
.
reset
(
new
VCLXWindowImpl
(
*
this
,
_bWithDefaultProps
)
);
}
VCLXWindow
::~
VCLXWindow
()
{
delete
mpImpl
;
mpImpl
.
reset
()
;
if
(
GetWindow
()
)
{
...
...
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