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
7abe546e
Kaydet (Commit)
7abe546e
authored
Ock 23, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bool improvements
Change-Id: I3a3a2122902e1731e95d8469dfe9efc5a6b567ee
üst
12546c85
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
font.hxx
include/vcl/font.hxx
+2
-2
font.cxx
vcl/source/gdi/font.cxx
+2
-8
No files found.
include/vcl/font.hxx
Dosyayı görüntüle @
7abe546e
...
@@ -126,8 +126,8 @@ public:
...
@@ -126,8 +126,8 @@ public:
void
GetFontAttributes
(
ImplFontAttributes
&
rAttrs
)
const
;
void
GetFontAttributes
(
ImplFontAttributes
&
rAttrs
)
const
;
Font
&
operator
=
(
const
Font
&
);
Font
&
operator
=
(
const
Font
&
);
sal_B
ool
operator
==
(
const
Font
&
)
const
;
b
ool
operator
==
(
const
Font
&
)
const
;
sal_B
ool
operator
!=
(
const
Font
&
rFont
)
const
b
ool
operator
!=
(
const
Font
&
rFont
)
const
{
return
!
(
Font
::
operator
==
(
rFont
));
}
{
return
!
(
Font
::
operator
==
(
rFont
));
}
sal_Bool
IsSameInstance
(
const
Font
&
)
const
;
sal_Bool
IsSameInstance
(
const
Font
&
)
const
;
...
...
vcl/source/gdi/font.cxx
Dosyayı görüntüle @
7abe546e
...
@@ -587,15 +587,9 @@ Font& Font::operator=( const Font& rFont )
...
@@ -587,15 +587,9 @@ Font& Font::operator=( const Font& rFont )
return
*
this
;
return
*
this
;
}
}
sal_B
ool
Font
::
operator
==
(
const
Font
&
rFont
)
const
b
ool
Font
::
operator
==
(
const
Font
&
rFont
)
const
{
{
return
mpImplFont
==
rFont
.
mpImplFont
||
*
mpImplFont
==
*
rFont
.
mpImplFont
;
if
(
mpImplFont
==
rFont
.
mpImplFont
)
return
sal_True
;
if
(
*
mpImplFont
==
*
rFont
.
mpImplFont
)
return
sal_True
;
return
sal_False
;
}
}
void
Font
::
Merge
(
const
Font
&
rFont
)
void
Font
::
Merge
(
const
Font
&
rFont
)
...
...
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