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
e19c00ed
Kaydet (Commit)
e19c00ed
authored
14 years ago
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: remove unused TextAttrib stuff
üst
fd0d90b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
txtattr.hxx
svtools/inc/svtools/txtattr.hxx
+0
-4
txtattr.cxx
svtools/source/edit/txtattr.cxx
+0
-21
No files found.
svtools/inc/svtools/txtattr.hxx
Dosyayı görüntüle @
e19c00ed
...
...
@@ -61,8 +61,6 @@ public:
sal_uInt16
Which
()
const
{
return
mnWhich
;
}
virtual
void
SetFont
(
Font
&
rFont
)
const
=
0
;
virtual
TextAttrib
*
Clone
()
const
=
0
;
virtual
int
operator
==
(
const
TextAttrib
&
rAttr
)
const
=
0
;
int
operator
!=
(
const
TextAttrib
&
rAttr
)
const
{
return
!
(
*
this
==
rAttr
);
}
...
...
@@ -114,8 +112,6 @@ private:
Color
maColor
;
public
:
TextAttribHyperLink
(
const
XubString
&
rURL
);
TextAttribHyperLink
(
const
XubString
&
rURL
,
const
XubString
&
rDescription
);
TextAttribHyperLink
(
const
TextAttribHyperLink
&
rAttr
);
~
TextAttribHyperLink
();
...
...
This diff is collapsed.
Click to expand it.
svtools/source/edit/txtattr.cxx
Dosyayı görüntüle @
e19c00ed
...
...
@@ -39,15 +39,6 @@ TextAttrib::~TextAttrib()
{
}
void
TextAttrib
::
SetFont
(
Font
&
)
const
{
}
TextAttrib
*
TextAttrib
::
Clone
()
const
{
return
NULL
;
}
int
TextAttrib
::
operator
==
(
const
TextAttrib
&
rAttr
)
const
{
return
mnWhich
==
rAttr
.
mnWhich
;
...
...
@@ -115,18 +106,6 @@ int TextAttribFontWeight::operator==( const TextAttrib& rAttr ) const
}
TextAttribHyperLink
::
TextAttribHyperLink
(
const
XubString
&
rURL
)
:
TextAttrib
(
TEXTATTR_HYPERLINK
),
maURL
(
rURL
)
{
maColor
=
COL_BLUE
;
}
TextAttribHyperLink
::
TextAttribHyperLink
(
const
XubString
&
rURL
,
const
XubString
&
rDescription
)
:
TextAttrib
(
TEXTATTR_HYPERLINK
),
maURL
(
rURL
),
maDescription
(
rDescription
)
{
maColor
=
COL_BLUE
;
}
TextAttribHyperLink
::
TextAttribHyperLink
(
const
TextAttribHyperLink
&
rAttr
)
:
TextAttrib
(
rAttr
),
maURL
(
rAttr
.
maURL
),
maDescription
(
rAttr
.
maDescription
)
{
...
...
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