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
92ce8daf
Kaydet (Commit)
92ce8daf
authored
Eyl 01, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update unused code
Change-Id: I3f304f97b91b26b445174255a63e15c6668ad438
üst
8e55a68b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
70 deletions
+5
-70
nbdtmg.hxx
include/svx/nbdtmg.hxx
+0
-2
nbdtmg.cxx
svx/source/sidebar/nbdtmg.cxx
+0
-45
numfmtlb.hxx
sw/source/ui/inc/numfmtlb.hxx
+0
-4
numfmtlb.cxx
sw/source/ui/utlui/numfmtlb.cxx
+0
-16
unusedcode.easy
unusedcode.easy
+5
-3
No files found.
include/svx/nbdtmg.hxx
Dosyayı görüntüle @
92ce8daf
...
...
@@ -347,8 +347,6 @@ class SVX_DLLPUBLIC NumberingTypeMgr: public NBOTypeMgrBase
virtual
sal_Bool
ApplyNumRule
(
SvxNumRule
&
aNum
,
sal_uInt16
nIndex
,
sal_uInt16
mLevel
=
(
sal_uInt16
)
0xFFFF
,
sal_Bool
isDefault
=
false
,
sal_Bool
isResetSize
=
false
);
virtual
String
GetDescription
(
sal_uInt16
nIndex
,
sal_Bool
isDefault
=
false
);
virtual
sal_Bool
IsCustomized
(
sal_uInt16
nIndex
);
sal_uInt16
GetNumCount
()
const
;
NumberSettings_Impl
*
GetNumSettingByIndex
(
sal_uInt16
nIndex
)
const
;
static
NumberingTypeMgr
*
GetInstance
()
{
if
(
_instance
==
0
)
...
...
svx/source/sidebar/nbdtmg.cxx
Dosyayı görüntüle @
92ce8daf
...
...
@@ -1351,34 +1351,6 @@ NumberingTypeMgr::NumberingTypeMgr(const NumberingTypeMgr& aTypeMgr):
//pNumSettingsArr( new NumSettingsArr_Impl ),
pNumberSettingsArr
(
new
NumberSettingsArr_Impl
)
{
/*
for(sal_uInt16 i=0;i<aTypeMgr.GetNumCount();i++)
{
NumberSettings_Impl* _pSet = aTypeMgr.GetNumSettingByIndex(i);
if ( _pSet )
{
pNumberSettingsArr->GetObject(i)->nIndex = _pSet->nIndex;
pNumberSettingsArr->GetObject(i)->nIndexDefault = _pSet->nIndexDefault;
pNumberSettingsArr->GetObject(i)->sDescription = _pSet->sDescription;
pNumberSettingsArr->GetObject(i)->bIsCustomized = _pSet->bIsCustomized;
if ( _pSet->pNumSetting )
{
pNumberSettingsArr->GetObject(i)->pNumSetting->nNumberType = _pSet->pNumSetting->nNumberType;
pNumberSettingsArr->GetObject(i)->pNumSetting->nParentNumbering = _pSet->pNumSetting->nParentNumbering;
pNumberSettingsArr->GetObject(i)->pNumSetting->sPrefix = _pSet->pNumSetting->sPrefix;
pNumberSettingsArr->GetObject(i)->pNumSetting->sSuffix = _pSet->pNumSetting->sSuffix;
pNumberSettingsArr->GetObject(i)->pNumSetting->sBulletChar = _pSet->pNumSetting->sBulletChar;
pNumberSettingsArr->GetObject(i)->pNumSetting->sBulletFont = _pSet->pNumSetting->sBulletFont;
pNumberSettingsArr->GetObject(i)->pNumSetting->eLabelFollowedBy = _pSet->pNumSetting->eLabelFollowedBy;
pNumberSettingsArr->GetObject(i)->pNumSetting->nTabValue = _pSet->pNumSetting->nTabValue;
pNumberSettingsArr->GetObject(i)->pNumSetting->eNumAlign = _pSet->pNumSetting->eNumAlign;
pNumberSettingsArr->GetObject(i)->pNumSetting->nNumAlignAt = _pSet->pNumSetting->nNumAlignAt;
pNumberSettingsArr->GetObject(i)->pNumSetting->nNumIndentAt = _pSet->pNumSetting->nNumIndentAt;
}
}
}
*/
ImplLoad
(
OUString
(
"standard.syb"
));
}
...
...
@@ -1592,23 +1564,6 @@ sal_Bool NumberingTypeMgr::IsCustomized(sal_uInt16 nIndex)
return
bRet
;
}
sal_uInt16
NumberingTypeMgr
::
GetNumCount
()
const
{
sal_uInt16
nRet
=
0
;
if
(
pNumberSettingsArr
)
nRet
=
pNumberSettingsArr
->
size
();
return
nRet
;
}
NumberSettings_Impl
*
NumberingTypeMgr
::
GetNumSettingByIndex
(
sal_uInt16
nIndex
)
const
{
NumberSettings_Impl
*
pRet
=
0
;
if
(
pNumberSettingsArr
&&
nIndex
<
pNumberSettingsArr
->
size
()
)
{
pRet
=
(
*
pNumberSettingsArr
)[
nIndex
].
get
();
}
return
pRet
;
}
/***************************************************************************************************
**********************Multi-level /Outline Type lib*******************************************************
****************************************************************************************************/
...
...
sw/source/ui/inc/numfmtlb.hxx
Dosyayı görüntüle @
92ce8daf
...
...
@@ -47,10 +47,6 @@ class SW_DLLPUBLIC NumFormatListBox : public ListBox
public
:
NumFormatListBox
(
Window
*
pWin
,
WinBits
nStyle
);
NumFormatListBox
(
Window
*
pWin
,
SwView
*
pView
,
const
ResId
&
rResId
,
short
nFormatType
=
NUMBERFORMAT_NUMBER
,
sal_uLong
nDefFmt
=
0
,
sal_Bool
bUsrFmts
=
sal_True
);
~
NumFormatListBox
();
void
Clear
();
...
...
sw/source/ui/utlui/numfmtlb.cxx
Dosyayı görüntüle @
92ce8daf
...
...
@@ -87,22 +87,6 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeNumFormatListBox(Window *pP
return
pListBox
;
}
NumFormatListBox
::
NumFormatListBox
(
Window
*
pWin
,
SwView
*
pView
,
const
ResId
&
rResId
,
short
nFormatType
,
sal_uLong
nDefFmt
,
sal_Bool
bUsrFmts
)
:
ListBox
(
pWin
,
rResId
),
nCurrFormatType
(
-
1
),
nStdEntry
(
0
),
bOneArea
(
sal_False
),
nDefFormat
(
nDefFmt
),
pVw
(
pView
),
pOwnFormatter
(
0
),
bShowLanguageControl
(
sal_False
),
bUseAutomaticLanguage
(
sal_True
)
{
Init
(
nFormatType
,
bUsrFmts
);
}
void
NumFormatListBox
::
Init
(
short
nFormatType
,
sal_Bool
bUsrFmts
)
{
SwView
*
pView
=
GetView
();
...
...
unusedcode.easy
Dosyayı görüntüle @
92ce8daf
...
...
@@ -5,6 +5,8 @@
(anonymous namespace)::VBATest::testMiscOLEStuff()
AffineMatrixItem::GetAffineMatrix2D() const
BackingWindow::LinkStubWindowEventListener(void*, void*)
Bcp47CountryEntry::getLocale() const
BitmapReadAccess::GetColorWithFallback(long, long, BitmapColor const&) const
BitmapWriteAccess::FillPolyPolygon(PolyPolygon const&)
CuiAboutConfigTabPage::LinkStubHeaderSelect_Impl(void*, void*)
DbgRegisterNamedUserChannel(rtl::OUString const&, void (*)(char const*))
...
...
@@ -150,7 +152,8 @@ drawinglayer::attribute::Sdr3DLightAttribute::isDefault() const
drawinglayer::attribute::Sdr3DObjectAttribute::isDefault() const
drawinglayer::attribute::SdrFillGraphicAttribute::getLogSize() const
drawinglayer::geometry::ViewInformation2D::isDefault() const
editeng::SectionAttribute::SectionAttribute()
editeng::MisspellRange::MisspellRange()
editeng::Section::Section()
formula::DoubleVectorRefToken::GetArrayLength() const
formula::FormulaDlg::CheckMatrix()
formula::FormulaDlg::isUserMatrix() const
...
...
@@ -211,10 +214,9 @@ svx::sidebar::GraphyicBulletsTypeMgr::GraphyicBulletsTypeMgr(unsigned short, Sfx
svx::sidebar::LinePropertyPanel::LinkStubImplPopupModeEndHdl(void*, void*)
svx::sidebar::LineWidthControl::GetValueSet()
svx::sidebar::NumberingTypeMgr::GetNumCount() const
svx::sidebar::NumberingTypeMgr::GetNumSettingByIndex(unsigned short) const
svx::sidebar::NumberingTypeMgr::NumberingTypeMgr(unsigned short, SfxItemSet const*)
svx::sidebar::ParaPropertyPanel::InitImageList(boost::scoped_ptr<ToolBox>&, ImageList&, ImageList&)
svx::sidebar::ParaPropertyPanel::LinkStubImplPopupModeEndHdl(void*, void*)
sw::util::HdFtDistanceGlue::EqualTopBottom(sw::util::HdFtDistanceGlue const&) const
unoidl::UnoidlProvider::getConstant(unsigned int) const
utl::ConfigItem::getUniqueSetElementName(rtl::OUString const&, rtl::OUString&)
utl::toISO8601(com::sun::star::util::Time 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