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
c57ba947
Kaydet (Commit)
c57ba947
authored
Eki 20, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
drop confusing and unused single font setters
üst
e3ef9beb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
35 deletions
+2
-35
Condition.cxx
reportdesign/source/ui/dlg/Condition.cxx
+1
-1
fntctrl.hxx
svx/inc/svx/fntctrl.hxx
+0
-3
fntctrl.cxx
svx/source/dialog/fntctrl.cxx
+1
-29
unusedcode.easy
unusedcode.easy
+0
-2
No files found.
reportdesign/source/ui/dlg/Condition.cxx
Dosyayı görüntüle @
c57ba947
...
...
@@ -674,7 +674,7 @@ void Condition::updateToolbar(const uno::Reference< report::XReportControlFormat
aFont
.
SetEmphasisMark
(
static_cast
<
FontEmphasisMark
>
(
_xReportControlFormat
->
getControlTextEmphasis
()
)
);
aFont
.
SetRelief
(
static_cast
<
FontRelief
>
(
_xReportControlFormat
->
getCharRelief
()
)
);
aFont
.
SetColor
(
_xReportControlFormat
->
getCharColor
()
);
m_aPreview
.
SetFont
(
aFont
);
m_aPreview
.
SetFont
(
aFont
,
aFont
,
aFont
);
m_aPreview
.
SetBackColor
(
_xReportControlFormat
->
getControlBackground
()
);
m_aPreview
.
SetTextLineColor
(
Color
(
_xReportControlFormat
->
getCharUnderlineColor
()
)
);
}
...
...
svx/inc/svx/fntctrl.hxx
Dosyayı görüntüle @
c57ba947
...
...
@@ -68,10 +68,7 @@ public:
// for reasons of efficiency not const
SvxFont
&
GetFont
();
const
SvxFont
&
GetFont
()
const
;
void
SetFont
(
const
SvxFont
&
rFont
);
void
SetFont
(
const
SvxFont
&
rNormalFont
,
const
SvxFont
&
rCJKFont
,
const
SvxFont
&
rCTLFont
);
void
SetCJKFont
(
const
SvxFont
&
rFont
);
void
SetCTLFont
(
const
SvxFont
&
rFont
);
SvxFont
&
GetCJKFont
();
SvxFont
&
GetCTLFont
();
void
SetColor
(
const
Color
&
rColor
);
...
...
svx/source/dialog/fntctrl.cxx
Dosyayı görüntüle @
c57ba947
...
...
@@ -599,16 +599,6 @@ void SvxFontPrevWindow::SetFontNameAsPreviewText()
// -----------------------------------------------------------------------
void
SvxFontPrevWindow
::
SetFont
(
const
SvxFont
&
rOutFont
)
{
setFont
(
rOutFont
,
pImpl
->
aFont
);
pImpl
->
Invalidate100PercentFontWidth
();
Invalidate
();
}
// -----------------------------------------------------------------------
void
SvxFontPrevWindow
::
SetFont
(
const
SvxFont
&
rNormalOutFont
,
const
SvxFont
&
rCJKOutFont
,
const
SvxFont
&
rCTLFont
)
{
setFont
(
rNormalOutFont
,
pImpl
->
aFont
);
...
...
@@ -622,24 +612,6 @@ void SvxFontPrevWindow::SetFont( const SvxFont& rNormalOutFont, const SvxFont& r
// -----------------------------------------------------------------------
void
SvxFontPrevWindow
::
SetCJKFont
(
const
SvxFont
&
rCJKOutFont
)
{
setFont
(
rCJKOutFont
,
pImpl
->
aCJKFont
);
pImpl
->
Invalidate100PercentFontWidth
();
Invalidate
();
}
// -----------------------------------------------------------------------------
void
SvxFontPrevWindow
::
SetCTLFont
(
const
SvxFont
&
rCTLOutFont
)
{
setFont
(
rCTLOutFont
,
pImpl
->
aCTLFont
);
pImpl
->
Invalidate100PercentFontWidth
();
Invalidate
();
}
// -----------------------------------------------------------------------
void
SvxFontPrevWindow
::
SetColor
(
const
Color
&
rColor
)
{
delete
pImpl
->
pColor
;
...
...
@@ -1457,7 +1429,7 @@ void SvxFontPrevWindow::SetFont( const SfxItemSet& rSet, sal_uInt16 nSlot, SvxFo
sal_uInt16
nWhich
=
rSet
.
GetPool
()
->
GetWhich
(
nSlot
);
if
(
ISITEMSET
)
{
const
SvxFontItem
&
rFontItem
=
(
SvxFontItem
&
)
rSet
.
Get
(
nWhich
);
const
SvxFontItem
&
rFontItem
=
(
const
SvxFontItem
&
)
rSet
.
Get
(
nWhich
);
rFont
.
SetFamily
(
rFontItem
.
GetFamily
()
);
rFont
.
SetName
(
rFontItem
.
GetFamilyName
()
);
rFont
.
SetPitch
(
rFontItem
.
GetPitch
()
);
...
...
unusedcode.easy
Dosyayı görüntüle @
c57ba947
...
...
@@ -1025,8 +1025,6 @@ SvxEditSourceHint::SetStartValue(unsigned long)
SvxEditSourceHint::SetValue(unsigned long)
SvxFont::DrawText(OutputDevice*, Point const&, String const&, unsigned short, unsigned short) const
SvxFontPrevWindow::IsTwoLines() const
SvxFontPrevWindow::SetCJKFont(SvxFont const&)
SvxFontPrevWindow::SetCTLFont(SvxFont const&)
SvxFontPrevWindow::SetNoLines(unsigned char)
SvxFontPrevWindow::SetPreviewBackgroundToCharacter(unsigned char)
SvxFontPrevWindow::SvxFontPrevWindow(Window*)
...
...
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