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
00fb6c9d
Kaydet (Commit)
00fb6c9d
authored
Nis 22, 2012
tarafından
Vicente Rafael Estevez Vacas
Kaydeden (comit)
Caolán McNamara
Nis 23, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PATCH: Remove unused code from editing
üst
60cea1f4
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
43 deletions
+0
-43
scheduler.hxx
svx/inc/svx/sdr/animation/scheduler.hxx
+0
-3
viewcontactofsdrmediaobj.hxx
svx/inc/svx/sdr/contact/viewcontactofsdrmediaobj.hxx
+0
-1
viewobjectcontactofunocontrol.hxx
svx/inc/svx/sdr/contact/viewobjectcontactofunocontrol.hxx
+0
-2
scheduler.cxx
svx/source/sdr/animation/scheduler.cxx
+0
-7
viewcontactofsdrmediaobj.cxx
svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx
+0
-22
viewobjectcontactofunocontrol.cxx
svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
+0
-5
unusedcode.easy
unusedcode.easy
+0
-3
No files found.
svx/inc/svx/sdr/animation/scheduler.hxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -133,9 +133,6 @@ namespace sdr
...
@@ -133,9 +133,6 @@ namespace sdr
// #i38135#
// #i38135#
void
SetTime
(
sal_uInt32
nTime
);
void
SetTime
(
sal_uInt32
nTime
);
// reset
void
Reset
(
sal_uInt32
nTime
);
// execute all ripe events, removes executed ones from the scheduler
// execute all ripe events, removes executed ones from the scheduler
void
triggerEvents
();
void
triggerEvents
();
...
...
svx/inc/svx/sdr/contact/viewcontactofsdrmediaobj.hxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -62,7 +62,6 @@ namespace sdr
...
@@ -62,7 +62,6 @@ namespace sdr
return
(
SdrMediaObj
&
)
GetSdrObject
();
return
(
SdrMediaObj
&
)
GetSdrObject
();
}
}
bool
hasPreferredSize
()
const
;
Size
getPreferredSize
()
const
;
Size
getPreferredSize
()
const
;
void
updateMediaItem
(
::
avmedia
::
MediaItem
&
rItem
)
const
;
void
updateMediaItem
(
::
avmedia
::
MediaItem
&
rItem
)
const
;
...
...
svx/inc/svx/sdr/contact/viewobjectcontactofunocontrol.hxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -64,8 +64,6 @@ namespace sdr { namespace contact {
...
@@ -64,8 +64,6 @@ namespace sdr { namespace contact {
public
:
public
:
ViewObjectContactOfUnoControl
(
ObjectContact
&
_rObjectContact
,
ViewContactOfUnoControl
&
_rViewContact
);
ViewObjectContactOfUnoControl
(
ObjectContact
&
_rObjectContact
,
ViewContactOfUnoControl
&
_rViewContact
);
/// determines whether an XControl already exists, and is currently visible
bool
isControlVisible
()
const
;
/// returns the ->XControl instance belonging to the instance, creates it if necessary
/// returns the ->XControl instance belonging to the instance, creates it if necessary
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XControl
>
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XControl
>
...
...
svx/source/sdr/animation/scheduler.cxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -274,13 +274,6 @@ namespace sdr
...
@@ -274,13 +274,6 @@ namespace sdr
}
}
}
}
void
Scheduler
::
Reset
(
sal_uInt32
nTime
)
{
mnTime
=
nTime
;
mnDeltaTime
=
0L
;
maList
.
Clear
();
}
void
Scheduler
::
InsertEvent
(
Event
*
pNew
)
void
Scheduler
::
InsertEvent
(
Event
*
pNew
)
{
{
if
(
pNew
)
if
(
pNew
)
...
...
svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -58,28 +58,6 @@ ViewObjectContact& ViewContactOfSdrMediaObj::CreateObjectSpecificViewObjectConta
...
@@ -58,28 +58,6 @@ ViewObjectContact& ViewContactOfSdrMediaObj::CreateObjectSpecificViewObjectConta
// ------------------------------------------------------------------------------
// ------------------------------------------------------------------------------
bool
ViewContactOfSdrMediaObj
::
hasPreferredSize
()
const
{
// #i71805# Since we may have a whole bunch of VOCs here, make a loop
// return true if all have their preferred size
const
sal_uInt32
nCount
(
getViewObjectContactCount
());
bool
bRetval
(
true
);
for
(
sal_uInt32
a
(
0
);
bRetval
&&
a
<
nCount
;
a
++
)
{
ViewObjectContact
*
pCandidate
=
getViewObjectContact
(
a
);
if
(
pCandidate
&&
!
static_cast
<
ViewObjectContactOfSdrMediaObj
*
>
(
pCandidate
)
->
hasPreferredSize
())
{
bRetval
=
false
;
}
}
return
bRetval
;
}
// ------------------------------------------------------------------------------
Size
ViewContactOfSdrMediaObj
::
getPreferredSize
()
const
Size
ViewContactOfSdrMediaObj
::
getPreferredSize
()
const
{
{
// #i71805# Since we may have a whole bunch of VOCs here, make a loop
// #i71805# Since we may have a whole bunch of VOCs here, make a loop
...
...
svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
Dosyayı görüntüle @
00fb6c9d
...
@@ -829,11 +829,6 @@ namespace sdr { namespace contact {
...
@@ -829,11 +829,6 @@ namespace sdr { namespace contact {
*/
*/
bool
impl_isDisposed_nofail
()
const
{
return
m_pAntiImpl
==
NULL
;
}
bool
impl_isDisposed_nofail
()
const
{
return
m_pAntiImpl
==
NULL
;
}
/** determines whether our control is currently visible
@nofail
*/
bool
impl_isControlVisible_nofail
()
const
{
return
m_bControlIsVisible
;
}
/** determines whether we are currently a listener at the control for desgin-mode relevant facets
/** determines whether we are currently a listener at the control for desgin-mode relevant facets
@nofail
@nofail
*/
*/
...
...
unusedcode.easy
Dosyayı görüntüle @
00fb6c9d
...
@@ -730,9 +730,6 @@ sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
...
@@ -730,9 +730,6 @@ sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
sd::ViewShellBase::RegisterFactory(unsigned short)
sd::ViewShellBase::RegisterFactory(unsigned short)
sdr::animation::Scheduler::Reset(unsigned int)
sdr::contact::ViewContactOfSdrMediaObj::hasPreferredSize() const
sdr::contact::ViewObjectContactOfUnoControl::isControlVisible() const
sfx2::TaskPaneWrapper::GetChildWindowId()
sfx2::TaskPaneWrapper::GetChildWindowId()
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
std::__cxx1998::multimap<_xmlNode*, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener>, std::less<_xmlNode*>, std::allocator<std::pair<_xmlNode* const, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener> > > >::~multimap()
std::__cxx1998::multimap<_xmlNode*, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener>, std::less<_xmlNode*>, std::allocator<std::pair<_xmlNode* const, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener> > > >::~multimap()
...
...
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