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
f150208c
Kaydet (Commit)
f150208c
authored
Mar 07, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
these Links either shouldn't be links, or shouldn't exist
üst
91b5497f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
43 deletions
+4
-43
sbxdec.cxx
basic/source/sbx/sbxdec.cxx
+0
-18
GroupsSorting.cxx
reportdesign/source/ui/dlg/GroupsSorting.cxx
+0
-15
tbxctrl.hxx
sfx2/inc/sfx2/tbxctrl.hxx
+1
-1
tbxitem.cxx
sfx2/source/toolbox/tbxitem.cxx
+3
-4
unusedcode.easy
unusedcode.easy
+0
-5
No files found.
basic/source/sbx/sbxdec.cxx
Dosyayı görüntüle @
f150208c
...
...
@@ -290,22 +290,6 @@ bool SbxDecimal::getDouble( double& rVal )
return
bRet
;
}
bool
SbxDecimal
::
getInt
(
int
&
rVal
)
{
sal_Int32
TmpVal
;
bool
bRet
=
getLong
(
TmpVal
);
rVal
=
TmpVal
;
return
bRet
;
}
bool
SbxDecimal
::
getUInt
(
unsigned
int
&
rVal
)
{
sal_uInt32
TmpVal
;
bool
bRet
=
getULong
(
TmpVal
);
rVal
=
TmpVal
;
return
bRet
;
}
#else
// !WIN32
...
...
@@ -369,8 +353,6 @@ bool SbxDecimal::getUShort( sal_uInt16& rVal ) { (void)rVal; return false;
bool
SbxDecimal
::
getULong
(
sal_uInt32
&
rVal
)
{
(
void
)
rVal
;
return
false
;
}
bool
SbxDecimal
::
getSingle
(
float
&
rVal
)
{
(
void
)
rVal
;
return
false
;
}
bool
SbxDecimal
::
getDouble
(
double
&
rVal
)
{
(
void
)
rVal
;
return
false
;
}
bool
SbxDecimal
::
getInt
(
int
&
rVal
)
{
(
void
)
rVal
;
return
false
;
}
bool
SbxDecimal
::
getUInt
(
unsigned
int
&
rVal
)
{
(
void
)
rVal
;
return
false
;
}
#endif
...
...
reportdesign/source/ui/dlg/GroupsSorting.cxx
Dosyayı görüntüle @
f150208c
...
...
@@ -165,8 +165,6 @@ protected:
private
:
DECL_LINK
(
AsynchActivate
,
void
*
);
DECL_LINK
(
AsynchDeactivate
,
void
*
);
DECL_LINK
(
DelayedPaste
,
void
*
);
DECL_LINK
(
CBChangeHdl
,
ComboBox
*
);
...
...
@@ -408,19 +406,6 @@ IMPL_LINK( OFieldExpressionControl, CBChangeHdl, ComboBox*, /*pComboBox*/ )
SaveModified
();
return
0L
;
}
//------------------------------------------------------------------------------
IMPL_LINK_NOARG
(
OFieldExpressionControl
,
AsynchActivate
)
{
ActivateCell
();
return
0L
;
}
//------------------------------------------------------------------------------
IMPL_LINK_NOARG
(
OFieldExpressionControl
,
AsynchDeactivate
)
{
DeactivateCell
();
return
0L
;
}
//------------------------------------------------------------------------------
sal_Bool
OFieldExpressionControl
::
IsTabAllowed
(
sal_Bool
/*bForward*/
)
const
...
...
sfx2/inc/sfx2/tbxctrl.hxx
Dosyayı görüntüle @
f150208c
...
...
@@ -127,7 +127,7 @@ private:
SAL_DLLPRIVATE
SfxPopupWindow
(
SfxPopupWindow
&
);
// not defined
SAL_DLLPRIVATE
void
operator
=
(
SfxPopupWindow
&
);
// not defined
DECL_DLLPRIVATE_LINK
(
Delete
,
void
*
);
void
Delete
(
);
protected
:
virtual
void
PopupModeEnd
();
...
...
sfx2/source/toolbox/tbxitem.cxx
Dosyayı görüntüle @
f150208c
...
...
@@ -1291,7 +1291,7 @@ sal_Bool SfxPopupWindow::Close()
m_bFloating
=
sal_False
;
FloatingWindow
::
Close
();
Delete
(
0
);
Delete
();
return
sal_True
;
}
...
...
@@ -1319,7 +1319,7 @@ void SfxPopupWindow::DeleteFloatingWindow()
if
(
m_bFloating
)
{
Hide
();
Delete
(
0
);
Delete
();
}
}
...
...
@@ -1403,12 +1403,11 @@ void SfxPopupWindow::StateChanged(
//--------------------------------------------------------------------
IMPL_LINK_NOARG
(
SfxPopupWindow
,
Delete
)
void
SfxPopupWindow
::
Delete
(
)
{
if
(
m_aDeleteLink
.
IsSet
()
)
m_aDeleteLink
.
Call
(
this
);
delete
this
;
return
0
;
}
//--------------------------------------------------------------------
...
...
unusedcode.easy
Dosyayı görüntüle @
f150208c
...
...
@@ -46,8 +46,6 @@ SalGraphics::drawPolyLine(basegfx::B2DPolygon const&, double, basegfx::B2DVector
SalGraphics::drawPolyPolygon(basegfx::B2DPolyPolygon const&, double)
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)
SbxDecimal::getInt(int&)
SbxDecimal::getUInt(unsigned int&)
ScAddInAsyncs::Insert(ScAddInAsync* const&, unsigned short&)
ScAddInAsyncs::Insert(ScAddInAsync* const*, unsigned short)
ScAddInAsyncs::Insert(ScAddInAsyncs const*, unsigned short, unsigned short)
...
...
@@ -134,7 +132,6 @@ SfxMedium::GetHdl()
SfxModuleArr_Impl::DeleteAndDestroy(unsigned short, unsigned short)
SfxNavigatorWrapper::GetChildWindowId()
SfxPartChildWnd_Impl::GetChildWindowId()
SfxPopupWindow::LinkStubDelete(void*, void*)
SfxRecordingFloatWrapper_Impl::GetChildWindowId()
SfxUINT32s::Insert(SfxUINT32s const*, unsigned short, unsigned short, unsigned short)
SfxUINT32s::Remove(unsigned short, unsigned short)
...
...
@@ -979,8 +976,6 @@ psp::PrinterGfx::GetGlyphOutline(unsigned short, unsigned short**, Point**, unsi
psp::PrinterGfx::GetResolution(int&, int&) const
psp::PrinterGfx::PSRMoveTo(int, int)
psp::PrinterGfx::SetFallbackFont(int)
rptui::OFieldExpressionControl::LinkStubAsynchActivate(void*, void*)
rptui::OFieldExpressionControl::LinkStubAsynchDeactivate(void*, void*)
sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
...
...
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