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
c5bcfe90
Kaydet (Commit)
c5bcfe90
authored
Şub 26, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update unused code
Change-Id: I2d79938465800a6bfe8cc120b85dc449ff04a960
üst
598d02d7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
72 deletions
+0
-72
ftools.cxx
basegfx/source/numeric/ftools.cxx
+0
-27
ftools.hxx
include/basegfx/numeric/ftools.hxx
+0
-4
opencl_device.cxx
sc/source/core/opencl/opencl_device.cxx
+0
-10
svxpixelctlaccessiblecontext.cxx
svx/source/accessibility/svxpixelctlaccessiblecontext.cxx
+0
-16
svxpixelctlaccessiblecontext.hxx
svx/source/inc/svxpixelctlaccessiblecontext.hxx
+0
-11
unusedcode.easy
unusedcode.easy
+0
-4
No files found.
basegfx/source/numeric/ftools.cxx
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -25,33 +25,6 @@ namespace basegfx
// init static member of class fTools
double
::
basegfx
::
fTools
::
mfSmallValue
=
0.000000001
;
double
snapToZeroRange
(
double
v
,
double
fWidth
)
{
if
(
fTools
::
equalZero
(
fWidth
))
{
// with no range all snaps to range bound
return
0.0
;
}
else
{
if
(
v
<
0.0
||
v
>
fWidth
)
{
double
fRetval
(
fmod
(
v
,
fWidth
));
if
(
fRetval
<
0.0
)
{
fRetval
+=
fWidth
;
}
return
fRetval
;
}
else
{
return
v
;
}
}
}
}
// end of namespace basegfx
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
include/basegfx/numeric/ftools.hxx
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -136,10 +136,6 @@ namespace basegfx
return
v
/
M_PI_2
*
90.0
;
}
/** Snap v to the range [0.0 .. fWidth] using modulo
*/
double
snapToZeroRange
(
double
v
,
double
fWidth
);
/** return fValue with the sign of fSignCarrier, thus evtl. changed
*/
inline
double
copySign
(
double
fValue
,
double
fSignCarrier
)
...
...
sc/source/core/opencl/opencl_device.cxx
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -565,16 +565,6 @@ ds_device getDeviceSelection(const char* sProfilePath, bool bForceSelection)
return
selectedDevice
;
}
bool
selectedDeviceIsOpenCL
(
ds_device
device
)
{
return
(
DS_DEVICE_OPENCL_DEVICE
==
device
.
type
);
}
bool
selectedDeviceIsNativeCPU
(
ds_device
device
)
{
return
(
DS_DEVICE_NATIVE_CPU
==
device
.
type
);
}
}}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
svx/source/accessibility/svxpixelctlaccessiblecontext.cxx
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -379,22 +379,6 @@ void SvxPixelCtlAccessible::ensureIsAlive() const
throw
lang
::
DisposedException
();
}
void
SvxPixelCtlAccessible
::
ensureIsValidRow
(
sal_Int32
nRow
)
throw
(
lang
::
IndexOutOfBoundsException
)
{
if
(
nRow
>=
mrPixelCtl
.
GetHeight
()
||
nRow
<
0
)
throw
lang
::
IndexOutOfBoundsException
(
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"row index is invalid"
)
),
*
this
);
}
void
SvxPixelCtlAccessible
::
ensureIsValidColumn
(
sal_Int32
nColumn
)
throw
(
lang
::
IndexOutOfBoundsException
)
{
if
(
nColumn
>=
mrPixelCtl
.
GetWidth
()
||
nColumn
<
0
)
throw
lang
::
IndexOutOfBoundsException
(
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"column index is invalid"
)
),
*
this
);
}
//XAccessibleEventBroadcaster
void
SAL_CALL
SvxPixelCtlAccessible
::
addAccessibleEventListener
(
const
uno
::
Reference
<
XAccessibleEventListener
>&
xListener
)
throw
(
RuntimeException
)
{
...
...
svx/source/inc/svxpixelctlaccessiblecontext.hxx
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -249,17 +249,6 @@ public:
inline
sal_Bool
IsNotAlive
(
void
)
const
;
protected
:
/** @attention This method requires locked mutex's and a living object.
@throws <type>IndexOutOfBoundsException</type>
If the specified row index is invalid. */
void
ensureIsValidRow
(
sal_Int32
nRow
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
);
/** @attention This method requires locked mutex's and a living object.
@throws <type>IndexOutOfBoundsException</type>
If the specified column index is invalid. */
void
ensureIsValidColumn
(
sal_Int32
nColumn
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
);
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
m_xCurChild
;
public
:
void
NotifyChild
(
long
nIndex
,
sal_Bool
bSelect
,
sal_Bool
bCheck
);
...
...
unusedcode.easy
Dosyayı görüntüle @
c5bcfe90
...
...
@@ -22,7 +22,6 @@ GDriveDocument::GDriveDocument(GDriveSession*)
GDriveFolder::GDriveFolder(GDriveSession*)
GDriveProperty::GDriveProperty()
GDriveSession::GDriveSession()
ImplImageTree::checkStyle(rtl::OUString const&)
ImplRegionBand::IsInside(long, long)
ImplRegionBand::IsOver(long, long)
ImportExcel::GetLastFormula(short)
...
...
@@ -306,8 +305,6 @@ sc::CLBuildKernelThread::produce()
sc::CellTextAttr::CellTextAttr(unsigned short, unsigned char)
sc::ColumnSet::has(short, short) const
sc::CompareFunc(double, sc::Compare::Cell const&, sc::CompareOptions*)
sc::OpenCLDevice::selectedDeviceIsNativeCPU(ds_device)
sc::OpenCLDevice::selectedDeviceIsOpenCL(ds_device)
sc::opencl::OpenclDevice::getOpenclState()
sc::opencl::OpenclDevice::releaseOpenclRunEnv()
sc::opencl::OpenclDevice::setOpenclState(int)
...
...
@@ -315,7 +312,6 @@ sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
sd::framework::Pane::SetWindow(Window*)
sd::presenter::PresenterCanvas::copyRect(com::sun::star::uno::Reference<com::sun::star::rendering::XBitmapCanvas> const&, com::sun::star::geometry::RealRectangle2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&, com::sun::star::geometry::RealRectangle2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&)
sdr::overlay::OverlayRectangle::setSecondPosition(basegfx::B2DPoint const&)
sdr::table::Cell::getName()
sdr::table::SdrTableObj::getRowCount() const
sfx2::sidebar::ContextList::IsEmpty()
...
...
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