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
3576a87d
Kaydet (Commit)
3576a87d
authored
Ock 06, 2016
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bin some unused functions and fields
Change-Id: I679bae7734c655afe956845980e885b6b68002cd
üst
2b9ec36e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
salgdi.h
vcl/inc/win/salgdi.h
+0
-4
salfont.cxx
vcl/win/gdi/salfont.cxx
+0
-3
No files found.
vcl/inc/win/salgdi.h
Dosyayı görüntüle @
3576a87d
...
@@ -89,11 +89,8 @@ public:
...
@@ -89,11 +89,8 @@ public:
BYTE
GetCharSet
()
const
{
return
meWinCharSet
;
}
BYTE
GetCharSet
()
const
{
return
meWinCharSet
;
}
BYTE
GetPitchAndFamily
()
const
{
return
mnPitchAndFamily
;
}
BYTE
GetPitchAndFamily
()
const
{
return
mnPitchAndFamily
;
}
bool
SupportsKorean
()
const
{
return
mbHasKoreanRange
;
}
bool
SupportsCJK
()
const
{
return
mbHasCJKSupport
;
}
bool
SupportsCJK
()
const
{
return
mbHasCJKSupport
;
}
bool
SupportsArabic
()
const
{
return
mbHasArabicSupport
;
}
bool
SupportsArabic
()
const
{
return
mbHasArabicSupport
;
}
bool
AliasSymbolsHigh
()
const
{
return
mbAliasSymbolsHigh
;
}
bool
AliasSymbolsLow
()
const
{
return
mbAliasSymbolsLow
;
}
#if ENABLE_GRAPHITE
#if ENABLE_GRAPHITE
bool
SupportsGraphite
()
const
{
return
mbHasGraphiteSupport
;
}
bool
SupportsGraphite
()
const
{
return
mbHasGraphiteSupport
;
}
const
gr_face
*
GraphiteFace
()
const
;
const
gr_face
*
GraphiteFace
()
const
;
...
@@ -112,7 +109,6 @@ private:
...
@@ -112,7 +109,6 @@ private:
sal_IntPtr
mnId
;
sal_IntPtr
mnId
;
// some members that are initalized lazily when the font gets selected into a HDC
// some members that are initalized lazily when the font gets selected into a HDC
mutable
bool
mbHasKoreanRange
;
mutable
bool
mbHasCJKSupport
;
mutable
bool
mbHasCJKSupport
;
#if ENABLE_GRAPHITE
#if ENABLE_GRAPHITE
mutable
GrFontData
*
mpGraphiteData
;
mutable
GrFontData
*
mpGraphiteData
;
...
...
vcl/win/gdi/salfont.cxx
Dosyayı görüntüle @
3576a87d
...
@@ -998,7 +998,6 @@ ImplWinFontData::ImplWinFontData( const ImplFontAttributes& rDFS,
...
@@ -998,7 +998,6 @@ ImplWinFontData::ImplWinFontData( const ImplFontAttributes& rDFS,
int
nHeight
,
BYTE
eWinCharSet
,
BYTE
nPitchAndFamily
)
int
nHeight
,
BYTE
eWinCharSet
,
BYTE
nPitchAndFamily
)
:
PhysicalFontFace
(
rDFS
),
:
PhysicalFontFace
(
rDFS
),
mnId
(
0
),
mnId
(
0
),
mbHasKoreanRange
(
false
),
mbHasCJKSupport
(
false
),
mbHasCJKSupport
(
false
),
#if ENABLE_GRAPHITE
#if ENABLE_GRAPHITE
mpGraphiteData
(
NULL
),
mpGraphiteData
(
NULL
),
...
@@ -1244,8 +1243,6 @@ void ImplWinFontData::GetFontCapabilities( HDC hDC ) const
...
@@ -1244,8 +1243,6 @@ void ImplWinFontData::GetFontCapabilities( HDC hDC ) const
sal_uInt32
ulUnicodeRange2
=
GetUInt
(
pTable
+
46
);
sal_uInt32
ulUnicodeRange2
=
GetUInt
(
pTable
+
46
);
mbHasCJKSupport
=
(
ulUnicodeRange2
&
0x2DF00000
);
mbHasCJKSupport
=
(
ulUnicodeRange2
&
0x2DF00000
);
mbHasKoreanRange
=
(
ulUnicodeRange1
&
0x10000000
)
|
(
ulUnicodeRange2
&
0x01100000
);
mbHasArabicSupport
=
(
ulUnicodeRange1
&
0x00002000
);
mbHasArabicSupport
=
(
ulUnicodeRange1
&
0x00002000
);
}
}
}
}
...
...
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