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
b6d0d593
Kaydet (Commit)
b6d0d593
authored
Tem 13, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: remove unused TabControl::Foo
üst
91ef8382
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
33 deletions
+0
-33
tabctrl.hxx
vcl/inc/vcl/tabctrl.hxx
+0
-3
tabctrl.cxx
vcl/source/control/tabctrl.cxx
+0
-30
No files found.
vcl/inc/vcl/tabctrl.hxx
Dosyayı görüntüle @
b6d0d593
...
@@ -158,7 +158,6 @@ public:
...
@@ -158,7 +158,6 @@ public:
void
SetTabPage
(
sal_uInt16
nPageId
,
TabPage
*
pPage
);
void
SetTabPage
(
sal_uInt16
nPageId
,
TabPage
*
pPage
);
TabPage
*
GetTabPage
(
sal_uInt16
nPageId
)
const
;
TabPage
*
GetTabPage
(
sal_uInt16
nPageId
)
const
;
sal_uInt16
GetTabPageResId
(
sal_uInt16
nPageId
)
const
;
void
SetPageText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
);
void
SetPageText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
);
XubString
GetPageText
(
sal_uInt16
nPageId
)
const
;
XubString
GetPageText
(
sal_uInt16
nPageId
)
const
;
...
@@ -166,11 +165,9 @@ public:
...
@@ -166,11 +165,9 @@ public:
void
SetHelpText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
);
void
SetHelpText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
);
const
XubString
&
GetHelpText
(
sal_uInt16
nPageId
)
const
;
const
XubString
&
GetHelpText
(
sal_uInt16
nPageId
)
const
;
void
SetHelpId
(
sal_uInt16
nPageId
,
const
rtl
::
OString
&
rHelpId
);
rtl
::
OString
GetHelpId
(
sal_uInt16
nPageId
)
const
;
rtl
::
OString
GetHelpId
(
sal_uInt16
nPageId
)
const
;
void
SetPageImage
(
sal_uInt16
nPageId
,
const
Image
&
rImage
);
void
SetPageImage
(
sal_uInt16
nPageId
,
const
Image
&
rImage
);
const
Image
*
GetPageImage
(
sal_uInt16
nPageId
)
const
;
void
SetHelpText
(
const
XubString
&
rText
)
void
SetHelpText
(
const
XubString
&
rText
)
{
Control
::
SetHelpText
(
rText
);
}
{
Control
::
SetHelpText
(
rText
);
}
...
...
vcl/source/control/tabctrl.cxx
Dosyayı görüntüle @
b6d0d593
...
@@ -1981,18 +1981,6 @@ TabPage* TabControl::GetTabPage( sal_uInt16 nPageId ) const
...
@@ -1981,18 +1981,6 @@ TabPage* TabControl::GetTabPage( sal_uInt16 nPageId ) const
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
sal_uInt16
TabControl
::
GetTabPageResId
(
sal_uInt16
nPageId
)
const
{
ImplTabItem
*
pItem
=
ImplGetItem
(
nPageId
);
if
(
pItem
)
return
pItem
->
mnTabPageResId
;
else
return
0
;
}
// -----------------------------------------------------------------------
void
TabControl
::
SetPageText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
)
void
TabControl
::
SetPageText
(
sal_uInt16
nPageId
,
const
XubString
&
rText
)
{
{
ImplTabItem
*
pItem
=
ImplGetItem
(
nPageId
);
ImplTabItem
*
pItem
=
ImplGetItem
(
nPageId
);
...
@@ -2059,16 +2047,6 @@ const XubString& TabControl::GetHelpText( sal_uInt16 nPageId ) const
...
@@ -2059,16 +2047,6 @@ const XubString& TabControl::GetHelpText( sal_uInt16 nPageId ) const
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
void
TabControl
::
SetHelpId
(
sal_uInt16
nPageId
,
const
rtl
::
OString
&
rHelpId
)
{
ImplTabItem
*
pItem
=
ImplGetItem
(
nPageId
);
if
(
pItem
)
pItem
->
maHelpId
=
rHelpId
;
}
// -----------------------------------------------------------------------
rtl
::
OString
TabControl
::
GetHelpId
(
sal_uInt16
nPageId
)
const
rtl
::
OString
TabControl
::
GetHelpId
(
sal_uInt16
nPageId
)
const
{
{
rtl
::
OString
aRet
;
rtl
::
OString
aRet
;
...
@@ -2097,14 +2075,6 @@ void TabControl::SetPageImage( sal_uInt16 i_nPageId, const Image& i_rImage )
...
@@ -2097,14 +2075,6 @@ void TabControl::SetPageImage( sal_uInt16 i_nPageId, const Image& i_rImage )
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
const
Image
*
TabControl
::
GetPageImage
(
sal_uInt16
i_nPageId
)
const
{
const
ImplTabItem
*
pItem
=
ImplGetItem
(
i_nPageId
);
return
pItem
?
&
pItem
->
maTabImage
:
NULL
;
}
// -----------------------------------------------------------------------
Rectangle
TabControl
::
GetCharacterBounds
(
sal_uInt16
nPageId
,
long
nIndex
)
const
Rectangle
TabControl
::
GetCharacterBounds
(
sal_uInt16
nPageId
,
long
nIndex
)
const
{
{
Rectangle
aRet
;
Rectangle
aRet
;
...
...
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