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
afaaf252
Kaydet (Commit)
afaaf252
authored
Eyl 27, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Michael Stahl
Eki 02, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool in svl::SfxImageItem
Change-Id: I1a6d53352c65cd0999392531d8e406154bc4bf7a
üst
b8df7f62
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
imageitm.hxx
svl/inc/svl/imageitm.hxx
+2
-2
imageitm.cxx
svl/source/items/imageitm.cxx
+4
-4
No files found.
svl/inc/svl/imageitm.hxx
Dosyayı görüntüle @
afaaf252
...
...
@@ -42,8 +42,8 @@ public:
void
SetRotation
(
long
nValue
);
long
GetRotation
()
const
;
void
SetMirrored
(
sal_B
ool
bSet
);
sal_B
ool
IsMirrored
()
const
;
void
SetMirrored
(
b
ool
bSet
);
b
ool
IsMirrored
()
const
;
};
#endif // _SFX_IMAGEITM_HXX
...
...
svl/source/items/imageitm.cxx
Dosyayı görüntüle @
afaaf252
...
...
@@ -27,7 +27,7 @@ struct SfxImageItem_Impl
{
String
aURL
;
long
nAngle
;
sal_B
ool
bMirrored
;
b
ool
bMirrored
;
int
operator
==
(
const
SfxImageItem_Impl
&
rOther
)
const
{
return
nAngle
==
rOther
.
nAngle
&&
bMirrored
==
rOther
.
bMirrored
;
}
};
...
...
@@ -39,7 +39,7 @@ SfxImageItem::SfxImageItem( sal_uInt16 which, sal_uInt16 nImage )
{
pImp
=
new
SfxImageItem_Impl
;
pImp
->
nAngle
=
0
;
pImp
->
bMirrored
=
sal_F
alse
;
pImp
->
bMirrored
=
f
alse
;
}
SfxImageItem
::
SfxImageItem
(
const
SfxImageItem
&
rItem
)
...
...
@@ -109,12 +109,12 @@ long SfxImageItem::GetRotation() const
return
pImp
->
nAngle
;
}
void
SfxImageItem
::
SetMirrored
(
sal_B
ool
bSet
)
void
SfxImageItem
::
SetMirrored
(
b
ool
bSet
)
{
pImp
->
bMirrored
=
bSet
;
}
sal_B
ool
SfxImageItem
::
IsMirrored
()
const
b
ool
SfxImageItem
::
IsMirrored
()
const
{
return
pImp
->
bMirrored
;
}
...
...
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