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
00438a18
Kaydet (Commit)
00438a18
authored
Ara 14, 2012
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove some newly tagged unused methods
Change-Id: I95d2c24ffefe6835c9505d149dc94847f1140b9c
üst
3a9e1e71
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
42 deletions
+0
-42
treelist.hxx
svtools/inc/svtools/treelist.hxx
+0
-4
viewdataentry.hxx
svtools/inc/svtools/viewdataentry.hxx
+0
-1
treelist.cxx
svtools/source/contnr/treelist.cxx
+0
-29
viewdataentry.cxx
svtools/source/contnr/viewdataentry.cxx
+0
-5
unusedcode.easy
unusedcode.easy
+0
-3
No files found.
svtools/inc/svtools/treelist.hxx
Dosyayı görüntüle @
00438a18
...
...
@@ -193,9 +193,6 @@ public:
const
SvTreeListEntries
&
GetChildList
(
SvTreeListEntry
*
pParent
)
const
;
SvTreeListEntries
&
GetChildList
(
SvTreeListEntry
*
pParent
);
std
::
pair
<
SvTreeListEntries
::
const_iterator
,
SvTreeListEntries
::
const_iterator
>
GetChildIterators
(
const
SvTreeListEntry
*
pParent
)
const
;
std
::
pair
<
SvTreeListEntries
::
iterator
,
SvTreeListEntries
::
iterator
>
GetChildIterators
(
SvTreeListEntry
*
pParent
);
...
...
@@ -341,7 +338,6 @@ public:
sal_Bool
IsExpanded
(
SvTreeListEntry
*
pEntry
)
const
;
sal_Bool
IsSelected
(
SvTreeListEntry
*
pEntry
)
const
;
sal_Bool
HasEntryFocus
(
SvTreeListEntry
*
pEntry
)
const
;
void
SetEntryFocus
(
SvTreeListEntry
*
pEntry
,
sal_Bool
bFocus
);
const
SvViewDataEntry
*
GetViewData
(
const
SvTreeListEntry
*
pEntry
)
const
;
SvViewDataEntry
*
GetViewData
(
SvTreeListEntry
*
pEntry
);
...
...
svtools/inc/svtools/viewdataentry.hxx
Dosyayı görüntüle @
00438a18
...
...
@@ -65,7 +65,6 @@ public:
bool
IsCursored
()
const
;
bool
IsSelectable
()
const
;
void
SetFocus
(
bool
bFocus
);
void
SetCursored
(
bool
bCursored
);
void
SetSelected
(
bool
bSelected
);
void
SetHighlighted
(
bool
bHighlighted
);
void
SetExpanded
(
bool
bExpanded
);
...
...
svtools/source/contnr/treelist.cxx
Dosyayı görüntüle @
00438a18
...
...
@@ -1118,27 +1118,6 @@ SvTreeListEntry* SvTreeList::GetRootLevelParent( SvTreeListEntry* pEntry ) const
return
pCurParent
;
}
std
::
pair
<
SvTreeListEntries
::
const_iterator
,
SvTreeListEntries
::
const_iterator
>
SvTreeList
::
GetChildIterators
(
const
SvTreeListEntry
*
pParent
)
const
{
typedef
std
::
pair
<
SvTreeListEntries
::
const_iterator
,
SvTreeListEntries
::
const_iterator
>
IteratorPair
;
static
const
SvTreeListEntries
dummy
;
// prevent singular iterator asserts
IteratorPair
aRet
(
dummy
.
begin
(),
dummy
.
end
());
if
(
!
pParent
)
pParent
=
pRootItem
;
if
(
pParent
->
maChildren
.
empty
())
// This entry has no children.
return
aRet
;
aRet
.
first
=
pParent
->
maChildren
.
begin
();
aRet
.
second
=
pParent
->
maChildren
.
end
();
return
aRet
;
}
std
::
pair
<
SvTreeListEntries
::
iterator
,
SvTreeListEntries
::
iterator
>
SvTreeList
::
GetChildIterators
(
SvTreeListEntry
*
pParent
)
{
...
...
@@ -1494,14 +1473,6 @@ sal_Bool SvListView::IsSelected( SvTreeListEntry* pEntry ) const
return
itr
->
second
->
IsSelected
();
}
sal_Bool
SvListView
::
HasEntryFocus
(
SvTreeListEntry
*
pEntry
)
const
{
DBG_ASSERT
(
pEntry
,
"IsExpanded:No Entry"
);
SvDataTable
::
const_iterator
itr
=
maDataTable
.
find
(
pEntry
);
DBG_ASSERT
(
itr
!=
maDataTable
.
end
(),
"Entry not in Table"
);
return
itr
->
second
->
HasFocus
();
}
void
SvListView
::
SetEntryFocus
(
SvTreeListEntry
*
pEntry
,
sal_Bool
bFocus
)
{
DBG_ASSERT
(
pEntry
,
"SetEntryFocus:No Entry"
);
...
...
svtools/source/contnr/viewdataentry.cxx
Dosyayı görüntüle @
00438a18
...
...
@@ -97,11 +97,6 @@ void SvViewDataEntry::SetFocus( bool bFocus )
mbFocused
=
bFocus
;
}
void
SvViewDataEntry
::
SetCursored
(
bool
bCursored
)
{
mbCursored
=
bCursored
;
}
void
SvViewDataEntry
::
SetSelected
(
bool
bSelected
)
{
mbSelected
=
bSelected
;
...
...
unusedcode.easy
Dosyayı görüntüle @
00438a18
...
...
@@ -11,9 +11,6 @@ ScMenuFloatingWindow::getDoc()
ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent()
ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any const&)
SfxDocumentTemplateDlg::SfxDocumentTemplateDlg(Window*, SfxDocumentTemplates*)
SvListView::HasEntryFocus(SvTreeListEntry*) const
SvTreeList::GetChildIterators(SvTreeListEntry const*) const
SvViewDataEntry::SetCursored(bool)
TextEngine::GetLeftMargin() const
ThumbnailView::GetScrollWidth() const
ThumbnailViewItemAcc::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&)
...
...
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