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
df19c3c8
Kaydet (Commit)
df19c3c8
authored
Eyl 09, 2016
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
reduce the insanity level of the codebase a bit
Change-Id: I4e0ee3cb87dd8f2bf8e35909e1b93d311c17a8c6
üst
22547c51
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
xexptran.hxx
xmloff/inc/xexptran.hxx
+7
-4
xexptran.cxx
xmloff/source/draw/xexptran.cxx
+0
-0
No files found.
xmloff/inc/xexptran.hxx
Dosyayı görüntüle @
df19c3c8
...
...
@@ -28,6 +28,7 @@
#include <com/sun/star/drawing/HomogenMatrix.hpp>
#include <tools/mapunit.hxx>
#include <memory>
#include <vector>
struct
ImpSdXMLExpTransObj2DBase
;
...
...
@@ -45,14 +46,15 @@ namespace basegfx
class
SdXMLImExTransform2D
{
std
::
vector
<
ImpSdXMLExpTransObj2DBase
*
>
maList
;
// NOTE: This uses shared_ptr, because with unique_ptr the code
// fails to compile because of incomplete type.
std
::
vector
<
std
::
shared_ptr
<
ImpSdXMLExpTransObj2DBase
>
>
maList
;
OUString
msString
;
void
EmptyList
();
public
:
SdXMLImExTransform2D
()
{}
~
SdXMLImExTransform2D
()
{
EmptyList
();
}
void
AddRotate
(
double
fNew
);
void
AddTranslate
(
const
::
basegfx
::
B2DTuple
&
rNew
);
...
...
@@ -66,7 +68,9 @@ public:
class
SdXMLImExTransform3D
{
std
::
vector
<
ImpSdXMLExpTransObj3DBase
*
>
maList
;
// NOTE: This uses shared_ptr, because with unique_ptr the code
// fails to compile because of incomplete type.
std
::
vector
<
std
::
shared_ptr
<
ImpSdXMLExpTransObj3DBase
>
>
maList
;
OUString
msString
;
void
EmptyList
();
...
...
@@ -74,7 +78,6 @@ class SdXMLImExTransform3D
public
:
SdXMLImExTransform3D
()
{}
SdXMLImExTransform3D
(
const
OUString
&
rNew
,
const
SvXMLUnitConverter
&
rConv
);
~
SdXMLImExTransform3D
()
{
EmptyList
();
}
void
AddMatrix
(
const
::
basegfx
::
B3DHomMatrix
&
rNew
);
...
...
xmloff/source/draw/xexptran.cxx
Dosyayı görüntüle @
df19c3c8
This diff is collapsed.
Click to expand it.
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