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
7b627e46
Kaydet (Commit)
7b627e46
authored
Şub 27, 2013
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#704165: fix memory leak
Change-Id: Ia62ab987bc7f4f25e22385194ca2df8d6e74376f
üst
9c77890a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
undoanim.hxx
sd/inc/undoanim.hxx
+4
-3
undoanim.cxx
sd/source/core/undoanim.cxx
+0
-2
No files found.
sd/inc/undoanim.hxx
Dosyayı görüntüle @
7b627e46
...
...
@@ -23,6 +23,7 @@
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/animations/XAnimationNode.hpp>
#include <svx/svdundo.hxx>
#include <boost/scoped_ptr.hpp>
#include "sdundo.hxx"
...
...
@@ -45,7 +46,7 @@ public:
virtual
rtl
::
OUString
GetComment
()
const
;
private
:
UndoAnimationImpl
*
mpImpl
;
boost
::
scoped_ptr
<
UndoAnimationImpl
>
mpImpl
;
};
struct
UndoAnimationPathImpl
;
...
...
@@ -61,7 +62,7 @@ public:
virtual
rtl
::
OUString
GetComment
()
const
;
private
:
UndoAnimationPathImpl
*
mpImpl
;
boost
::
scoped_ptr
<
UndoAnimationPathImpl
>
mpImpl
;
};
struct
UndoTransitionImpl
;
...
...
@@ -78,7 +79,7 @@ public:
virtual
rtl
::
OUString
GetComment
()
const
;
private
:
UndoTransitionImpl
*
mpImpl
;
boost
::
scoped_ptr
<
UndoTransitionImpl
>
mpImpl
;
};
}
...
...
sd/source/core/undoanim.cxx
Dosyayı görüntüle @
7b627e46
...
...
@@ -65,7 +65,6 @@ UndoAnimation::UndoAnimation( SdDrawDocument* pDoc, SdPage* pThePage )
UndoAnimation
::~
UndoAnimation
()
{
delete
mpImpl
;
}
void
UndoAnimation
::
Undo
()
...
...
@@ -233,7 +232,6 @@ UndoTransition::UndoTransition( SdDrawDocument* _pDoc, SdPage* pThePage )
UndoTransition
::~
UndoTransition
()
{
delete
mpImpl
;
}
void
UndoTransition
::
Undo
()
...
...
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