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
bfcaa777
Kaydet (Commit)
bfcaa777
authored
Tem 15, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update unused code list
Change-Id: I045ac2928d4b8cf99f9f76c20a9e489adc34ed66
üst
5e21857c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
76 deletions
+19
-76
dbconversion.hxx
connectivity/inc/connectivity/dbconversion.hxx
+0
-3
dbconversion.cxx
connectivity/source/commontools/dbconversion.cxx
+0
-23
svlbitm.hxx
svtools/inc/svtools/svlbitm.hxx
+0
-1
svlbitm.cxx
svtools/source/contnr/svlbitm.cxx
+0
-12
unusedcode.easy
unusedcode.easy
+19
-37
No files found.
connectivity/inc/connectivity/dbconversion.hxx
Dosyayı görüntüle @
bfcaa777
...
...
@@ -115,9 +115,6 @@ namespace dbtools
static
::
com
::
sun
::
star
::
util
::
DateTime
toDateTime
(
const
::
rtl
::
OUString
&
_sSQLDate
);
/** return the given DateTime as JDBC compliant 64 bit value
*/
static
sal_Int64
toINT64
(
const
::
com
::
sun
::
star
::
util
::
DateTime
&
rVal
);
static
sal_Int32
getMsFromTime
(
const
::
com
::
sun
::
star
::
util
::
Time
&
rVal
);
static
sal_Int32
toDays
(
const
::
com
::
sun
::
star
::
util
::
Date
&
_rVal
,
const
::
com
::
sun
::
star
::
util
::
Date
&
_rNullDate
=
getStandardDate
());
...
...
connectivity/source/commontools/dbconversion.cxx
Dosyayı görüntüle @
bfcaa777
...
...
@@ -136,29 +136,6 @@ namespace dbtools
return
(
sal_Int32
)(
nHundredthSeconds
+
(
nSeconds
*
100
)
+
(
nMinutes
*
10000
)
+
(
nHours
*
1000000
));
}
//------------------------------------------------------------------------------
sal_Int64
DBTypeConversion
::
toINT64
(
const
DateTime
&
rVal
)
{
// normalize time
sal_Int32
nSeconds
=
rVal
.
Seconds
+
rVal
.
HundredthSeconds
/
100
;
sal_Int32
nHundredthSeconds
=
rVal
.
HundredthSeconds
%
100
;
sal_Int32
nMinutes
=
rVal
.
Minutes
+
nSeconds
/
60
;
nSeconds
=
nSeconds
%
60
;
sal_Int32
nHours
=
rVal
.
Hours
+
nMinutes
/
60
;
nMinutes
=
nMinutes
%
60
;
// assemble time
sal_Int32
nTime
=
(
sal_Int32
)(
nHundredthSeconds
+
(
nSeconds
*
100
)
+
(
nMinutes
*
10000
)
+
(
nHours
*
1000000
));
sal_Int32
nDate
=
((
sal_Int32
)(
rVal
.
Day
%
100
))
+
(((
sal_Int32
)(
rVal
.
Month
%
100
))
*
100
)
+
(((
sal_Int32
)
rVal
.
Year
%
10000
)
*
10000
);
sal_Int64
nRet
;
nRet
=
(
sal_Int64
)
nTime
;
nRet
<<=
32
;
nRet
+=
nDate
;
return
nRet
;
}
//------------------------------------------------------------------------------
sal_Int32
DBTypeConversion
::
getMsFromTime
(
const
Time
&
rVal
)
{
...
...
svtools/inc/svtools/svlbitm.hxx
Dosyayı görüntüle @
bfcaa777
...
...
@@ -186,7 +186,6 @@ public:
virtual
~
SvLBoxButton
();
virtual
void
InitViewData
(
SvLBox
*
,
SvLBoxEntry
*
,
SvViewDataItem
*
);
virtual
sal_uInt16
IsA
();
void
Check
(
SvLBox
*
pView
,
SvLBoxEntry
*
,
sal_Bool
bCheck
);
virtual
sal_Bool
ClickHdl
(
SvLBox
*
pView
,
SvLBoxEntry
*
);
virtual
void
Paint
(
const
Point
&
,
SvLBox
&
rView
,
sal_uInt16
nFlags
,
SvLBoxEntry
*
);
virtual
SvLBoxItem
*
Create
()
const
;
...
...
svtools/source/contnr/svlbitm.cxx
Dosyayı görüntüle @
bfcaa777
...
...
@@ -345,18 +345,6 @@ sal_uInt16 SvLBoxButton::IsA()
return
SV_ITEM_ID_LBOXBUTTON
;
}
void
SvLBoxButton
::
Check
(
SvLBox
*
,
SvLBoxEntry
*
,
sal_Bool
bOn
)
{
DBG_CHKTHIS
(
SvLBoxButton
,
0
);
if
(
bOn
!=
IsStateChecked
()
)
{
if
(
bOn
)
SetStateChecked
();
else
SetStateUnchecked
();
}
}
sal_Bool
SvLBoxButton
::
ClickHdl
(
SvLBox
*
,
SvLBoxEntry
*
pEntry
)
{
DBG_CHKTHIS
(
SvLBoxButton
,
0
);
...
...
unusedcode.easy
Dosyayı görüntüle @
bfcaa777
(anonymous namespace)::compareFiles(rtl::OUString const&, rtl::OUString const&)
(anonymous namespace)::dumpFillBitmapNameAsAttribute(rtl::OUString, _xmlTextWriter*)
(anonymous namespace)::dumpFillHatchNameAsAttribute(rtl::OUString, _xmlTextWriter*)
(anonymous namespace)::dumpGeometryAsElement(com::sun::star::drawing::PolyPolygonBezierCoords, _xmlTextWriter*)
(anonymous namespace)::dumpPolyPolygonBezierAsElement(com::sun::star::drawing::PolyPolygonBezierCoords, _xmlTextWriter*)
FontSelectPattern::FontSelectPattern(PhysicalFontFace const&, Size const&, float, int, bool)
HTMLControls::Insert(HTMLControl const*&, unsigned short&)
HTMLControls::Insert(HTMLControl const**, unsigned short)
...
...
@@ -9,22 +14,9 @@ InsCapOptArr::Insert(InsCaptionOpt* const&, unsigned short&)
InsCapOptArr::Insert(InsCaptionOpt* const*, unsigned short)
InsCapOptArr::Remove(InsCaptionOpt* const&, unsigned short)
InsCapOptArr::Remove(unsigned short, unsigned short)
MSDffImportRecords::Insert(MSDffImportRecords const*, unsigned short, unsigned short)
MSDffImportRecords::Insert(SvxMSDffImportRec* const&, unsigned short&)
MSDffImportRecords::Insert(SvxMSDffImportRec* const*, unsigned short)
MSDffImportRecords::Remove(SvxMSDffImportRec* const&, unsigned short)
MSDffImportRecords::Remove(unsigned short, unsigned short)
PopupMenu::SetSelectedEntry(unsigned short)
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
SanExtensionImpl::setCertExtn(unsigned char*, unsigned int, unsigned char*, unsigned int, unsigned char)
ScAddInAsyncs::Insert(ScAddInAsync* const&, unsigned short&)
ScAddInAsyncs::Insert(ScAddInAsync* const*, unsigned short)
ScAddInAsyncs::Insert(ScAddInAsyncs const*, unsigned short, unsigned short)
ScAddInDocs::DeleteAndDestroy(unsigned short, unsigned short)
ScAddInDocs::Insert(ScAddInDocs const*, unsigned short, unsigned short)
ScAddInDocs::Insert(ScDocument* const&, unsigned short&)
ScAddInDocs::Insert(ScDocument* const*, unsigned short)
ScAddInDocs::Remove(ScDocument* const&, unsigned short)
ScCompressedArray<int, unsigned char>::GetEntryCount() const
ScCompressedArray<int, unsigned short>::CopyFrom(ScCompressedArray<int, unsigned short> const&, int, int, long)
ScCompressedArray<int, unsigned short>::GetEntryCount() const
...
...
@@ -34,6 +26,8 @@ ScCompressedArray<int, unsigned short>::Remove(int, unsigned long)
ScCompressedArray<int, unsigned short>::ScCompressedArray(int, unsigned short const&, unsigned long)
ScCompressedArray<int, unsigned short>::ScCompressedArray(int, unsigned short const*, unsigned long)
ScCompressedArray<int, unsigned short>::SetValue(int, unsigned short const&)
ScDocument::GetFormattedAndUsedArea(short, short&, int&) const
ScDocument::InitializeAllNoteCaptions(bool)
ScHTMLColOffset::Insert(ScHTMLColOffset const*, unsigned short, unsigned short)
ScHTMLColOffset::Insert(unsigned long const&, unsigned short&)
ScHTMLColOffset::Insert(unsigned long const*, unsigned short)
...
...
@@ -48,16 +42,15 @@ ScRTFColTwips::Remove(unsigned long const&, unsigned short)
ScRTFColTwips_SAR::Replace(unsigned long const&, unsigned short)
ScRTFColTwips_SAR::Replace(unsigned long const*, unsigned short, unsigned short)
ScRTFColTwips_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned long const&, void*), void*)
ScValidationEntries_Impl::Insert(ScValidationData* const&, unsigned short&)
ScValidationEntries_Impl::Insert(ScValidationData* const*, unsigned short)
ScValidationEntries_Impl::Insert(ScValidationEntries_Impl const*, unsigned short, unsigned short)
ScValidationEntries_Impl::Remove(ScValidationData* const&, unsigned short)
ScValidationEntries_Impl::Remove(unsigned short, unsigned short)
ScTabView::HideCursor()
ScVbaFormat<ooo::vba::excel::XRange>::setNumberFormat(com::sun::star::lang::Locale, rtl::OUString const&)
ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent()
ScVbaFormat<ooo::vba::excel::XStyle>::setAddIndent(com::sun::star::uno::Any const&)
ScVbaFormat<ooo::vba::excel::XStyle>::setNumberFormat(com::sun::star::lang::Locale, rtl::OUString const&)
ScXMLExport::HasDrawPages(com::sun::star::uno::Reference<com::sun::star::sheet::XSpreadsheetDocument>&)
ScXMLImport::GetVisibleSheet()
SecurityEnvironment_NssImpl::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface>)
SfxMedium::SfxMedium(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, String const&, String const&, SfxItemSet const*, unsigned char)
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
SpinButton::SpinButton(Window*, ResId const&)
SrchAttrItemList::Replace(SearchAttrItem const&, unsigned short)
...
...
@@ -68,7 +61,6 @@ String::CreateFromAscii(char const*)
String::CreateFromAscii(char const*, unsigned short)
String::String(unsigned short const*)
String::String(unsigned short const*, unsigned short)
SvLBoxButton::Check(SvLBox*, SvLBoxEntry*, unsigned char)
SvPtrarr::Replace(void* const&, unsigned short)
SvPtrarr::Replace(void* const*, unsigned short, unsigned short)
SvPtrarr::_ForEach(unsigned short, unsigned short, unsigned char (*)(void* const&, void*), void*)
...
...
@@ -79,21 +71,10 @@ SvXMLAutoStylePoolParentsP_Impl::GetPos(SvXMLAutoStylePoolParentP_Impl const*) c
SvXMLAutoStylePoolParentsP_Impl::Remove(SvXMLAutoStylePoolParentP_Impl*)
SvXMLStyleIndices_Impl::GetPos(SvXMLStyleIndex_Impl const*) const
SvXMLStyleIndices_Impl::Remove(SvXMLStyleIndex_Impl*)
SvxAutocorrWordList::Insert(SvxAutocorrWord* const&, unsigned short&)
SvxAutocorrWordList::Insert(SvxAutocorrWord* const*, unsigned short)
SvxAutocorrWordList::Insert(SvxAutocorrWordList const*, unsigned short, unsigned short)
SvxAutocorrWordList::Remove(SvxAutocorrWord* const&, unsigned short)
SvxAutocorrWordList::Remove(unsigned short, unsigned short)
SvxMSDffShapeInfos::Insert(SvxMSDffShapeInfo* const&, unsigned short&)
SvxMSDffShapeInfos::Insert(SvxMSDffShapeInfo* const*, unsigned short)
SvxMSDffShapeInfos::Insert(SvxMSDffShapeInfos const*, unsigned short, unsigned short)
SvxMSDffShapeInfos::Remove(SvxMSDffShapeInfo* const&, unsigned short)
SvxMSDffShapeTxBxSort::DeleteAndDestroy(unsigned short, unsigned short)
SvxMSDffShapeTxBxSort::Insert(SvxMSDffShapeOrder const*&, unsigned short&)
SvxMSDffShapeTxBxSort::Insert(SvxMSDffShapeOrder const**, unsigned short)
SvxMSDffShapeTxBxSort::Insert(SvxMSDffShapeTxBxSort const*, unsigned short, unsigned short)
SvxMSDffShapeTxBxSort::Remove(SvxMSDffShapeOrder const*&, unsigned short)
SvxMSDffShapeTxBxSort::Remove(unsigned short, unsigned short)
SvxTabStopArr::Insert(SvxTabStop const&, unsigned short&)
SvxTabStopArr::Insert(SvxTabStop const*, unsigned short)
SvxTabStopArr::Remove(SvxTabStop const&, unsigned short)
...
...
@@ -109,11 +90,6 @@ SwBlockNames::Insert(SwBlockName const**, unsigned short)
SwBlockNames::Insert(SwBlockNames const*, unsigned short, unsigned short)
SwBlockNames::Remove(SwBlockName const*&, unsigned short)
SwBlockNames::Remove(unsigned short, unsigned short)
SwContentArr::Insert(SwContent* const&, unsigned short&)
SwContentArr::Insert(SwContent* const*, unsigned short)
SwContentArr::Insert(SwContentArr const*, unsigned short, unsigned short)
SwContentArr::Remove(SwContent* const&, unsigned short)
SwContentArr::Remove(unsigned short, unsigned short)
SwCurrShells::DeleteAndDestroy(unsigned short, unsigned short)
SwCurrShells::Insert(CurrShell* const&, unsigned short&)
SwCurrShells::Insert(CurrShell* const*, unsigned short)
...
...
@@ -196,6 +172,14 @@ SwpHtStart::Insert(SwpHtStart const*, unsigned short, unsigned short)
SwpHtStart::Remove(SwTxtAttr const*&, unsigned short)
TempFile::IsValid() const
TextEngine::GetLeftMargin() const
ThumbnailView::GetItemCount() const
ThumbnailView::ImplGetFirstItem()
ThumbnailView::InsertItem(unsigned short, BitmapEx const&, rtl::OUString const&, unsigned long)
ThumbnailView::LinkStubImplTimerHdl(void*, void*)
ThumbnailView::SetColCount(unsigned short)
ThumbnailView::SetLineCount(unsigned short)
ThumbnailViewItemAcc::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&)
ThumbnailViewItemAcc::getImplementation(com::sun::star::uno::Reference<com::sun::star::uno::XInterface> const&)
TransferableDataHelper::GetInterface(com::sun::star::datatransfer::DataFlavor const&, com::sun::star::uno::Reference<com::sun::star::uno::XInterface>&)
VCLXPrinterServer::getImplementationId()
VCLXPrinterServer::getTypes()
...
...
@@ -315,7 +299,6 @@ cairocanvas::SpriteDeviceHelper::getSurface()
cairocanvas::TextLayout::draw(_cairo*)
canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&)
cmis::Content::exchangeIdentity(com::sun::star::uno::Reference<com::sun::star::ucb::XContentIdentifier> const&)
cmis::Content::queryChildren(std::__debug::list<rtl::Reference<cmis::Content>, std::allocator<rtl::Reference<cmis::Content> > >&)
comphelper::OSelectionChangeListener::disposeAdapter()
comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
...
...
@@ -327,7 +310,6 @@ connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char)
connectivity::sdbcx::OGroup::OGroup(unsigned char)
connectivity::toString(com::sun::star::uno::Any const&)
cppcanvas::internal::ImplSprite::ImplSprite(com::sun::star::uno::Reference<com::sun::star::rendering::XSpriteCanvas> const&, com::sun::star::uno::Reference<com::sun::star::rendering::XAnimatedSprite> const&, boost::shared_ptr<cppcanvas::internal::ImplSpriteCanvas::TransformationArbiter> const&)
dbtools::DBTypeConversion::toINT64(com::sun::star::util::DateTime const&)
dbtools::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
drawinglayer::attribute::SdrFormTextAttribute::getFormTextShdwTransp() const
drawinglayer::attribute::SdrTextAttribute::isWrongSpell() 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