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
3accc525
Kaydet (Commit)
3accc525
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I610022f4eabe45eb4e2347db56accf3851e5c281
üst
0a48e0fb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
ReportUndoFactory.cxx
reportdesign/source/core/sdr/ReportUndoFactory.cxx
+4
-4
UndoActions.cxx
reportdesign/source/core/sdr/UndoActions.cxx
+1
-1
dlgedfunc.cxx
reportdesign/source/ui/report/dlgedfunc.cxx
+1
-1
No files found.
reportdesign/source/core/sdr/ReportUndoFactory.cxx
Dosyayı görüntüle @
3accc525
...
@@ -68,12 +68,12 @@ SdrUndoAction* OReportUndoFactory::CreateUndoGeoObject( SdrObject& rObject )
...
@@ -68,12 +68,12 @@ SdrUndoAction* OReportUndoFactory::CreateUndoGeoObject( SdrObject& rObject )
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoAttrObject
(
SdrObject
&
rObject
,
bool
bStyleSheet1
,
bool
bSaveText
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoAttrObject
(
SdrObject
&
rObject
,
bool
bStyleSheet1
,
bool
bSaveText
)
{
{
return
m_pUndoFactory
->
CreateUndoAttrObject
(
rObject
,
bStyleSheet1
?
true
:
false
,
bSaveText
?
true
:
false
);
return
m_pUndoFactory
->
CreateUndoAttrObject
(
rObject
,
bStyleSheet1
,
bSaveText
);
}
}
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoRemoveObject
(
SdrObject
&
rObject
,
bool
bOrdNumDirect
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoRemoveObject
(
SdrObject
&
rObject
,
bool
bOrdNumDirect
)
{
{
return
m_pUndoFactory
->
CreateUndoRemoveObject
(
rObject
,
bOrdNumDirect
?
true
:
false
);
return
m_pUndoFactory
->
CreateUndoRemoveObject
(
rObject
,
bOrdNumDirect
);
}
}
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoInsertObject
(
SdrObject
&
rObject
,
bool
/*bOrdNumDirect*/
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoInsertObject
(
SdrObject
&
rObject
,
bool
/*bOrdNumDirect*/
)
...
@@ -93,7 +93,7 @@ SdrUndoAction* OReportUndoFactory::CreateUndoNewObject( SdrObject& rObject, bool
...
@@ -93,7 +93,7 @@ SdrUndoAction* OReportUndoFactory::CreateUndoNewObject( SdrObject& rObject, bool
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoCopyObject
(
SdrObject
&
rObject
,
bool
bOrdNumDirect
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoCopyObject
(
SdrObject
&
rObject
,
bool
bOrdNumDirect
)
{
{
return
m_pUndoFactory
->
CreateUndoCopyObject
(
rObject
,
bOrdNumDirect
?
true
:
false
);
return
m_pUndoFactory
->
CreateUndoCopyObject
(
rObject
,
bOrdNumDirect
);
}
}
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoObjectOrdNum
(
SdrObject
&
rObject
,
sal_uInt32
nOldOrdNum1
,
sal_uInt32
nNewOrdNum1
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoObjectOrdNum
(
SdrObject
&
rObject
,
sal_uInt32
nOldOrdNum1
,
sal_uInt32
nNewOrdNum1
)
...
@@ -103,7 +103,7 @@ SdrUndoAction* OReportUndoFactory::CreateUndoObjectOrdNum( SdrObject& rObject, s
...
@@ -103,7 +103,7 @@ SdrUndoAction* OReportUndoFactory::CreateUndoObjectOrdNum( SdrObject& rObject, s
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoReplaceObject
(
SdrObject
&
rOldObject
,
SdrObject
&
rNewObject
,
bool
bOrdNumDirect
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoReplaceObject
(
SdrObject
&
rOldObject
,
SdrObject
&
rNewObject
,
bool
bOrdNumDirect
)
{
{
return
m_pUndoFactory
->
CreateUndoReplaceObject
(
rOldObject
,
rNewObject
,
bOrdNumDirect
?
true
:
false
);
return
m_pUndoFactory
->
CreateUndoReplaceObject
(
rOldObject
,
rNewObject
,
bOrdNumDirect
);
}
}
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoObjectLayerChange
(
SdrObject
&
rObject
,
SdrLayerID
aOldLayer
,
SdrLayerID
aNewLayer
)
SdrUndoAction
*
OReportUndoFactory
::
CreateUndoObjectLayerChange
(
SdrObject
&
rObject
,
SdrLayerID
aOldLayer
,
SdrLayerID
aNewLayer
)
...
...
reportdesign/source/core/sdr/UndoActions.cxx
Dosyayı görüntüle @
3accc525
...
@@ -135,7 +135,7 @@ OUndoContainerAction::~OUndoContainerAction()
...
@@ -135,7 +135,7 @@ OUndoContainerAction::~OUndoContainerAction()
#if OSL_DEBUG_LEVEL > 0
#if OSL_DEBUG_LEVEL > 0
SvxShape
*
pShape
=
SvxShape
::
getImplementation
(
xChild
);
SvxShape
*
pShape
=
SvxShape
::
getImplementation
(
xChild
);
SdrObject
*
pObject
=
pShape
?
pShape
->
GetSdrObject
()
:
NULL
;
SdrObject
*
pObject
=
pShape
?
pShape
->
GetSdrObject
()
:
NULL
;
OSL_ENSURE
(
pObject
?
pShape
->
HasSdrObjectOwnership
()
&&
!
pObject
->
IsInserted
()
:
true
,
OSL_ENSURE
(
pObject
==
nullptr
||
(
pShape
->
HasSdrObjectOwnership
()
&&
!
pObject
->
IsInserted
())
,
"OUndoContainerAction::~OUndoContainerAction: inconsistency in the shape/object ownership!"
);
"OUndoContainerAction::~OUndoContainerAction: inconsistency in the shape/object ownership!"
);
#endif
#endif
// -> dispose it
// -> dispose it
...
...
reportdesign/source/ui/report/dlgedfunc.cxx
Dosyayı görüntüle @
3accc525
...
@@ -610,7 +610,7 @@ bool DlgEdFunc::isRectangleHit(const MouseEvent& rMEvt)
...
@@ -610,7 +610,7 @@ bool DlgEdFunc::isRectangleHit(const MouseEvent& rMEvt)
SdrObject
*
pObjOverlapped
=
isOver
(
aNewRect
,
*
m_pParent
->
getPage
(),
m_rView
,
false
,
pObjIter
,
ISOVER_IGNORE_CUSTOMSHAPES
);
SdrObject
*
pObjOverlapped
=
isOver
(
aNewRect
,
*
m_pParent
->
getPage
(),
m_rView
,
false
,
pObjIter
,
ISOVER_IGNORE_CUSTOMSHAPES
);
bIsSetPoint
=
pObjOverlapped
?
true
:
false
;
bIsSetPoint
=
pObjOverlapped
!=
nullptr
;
if
(
pObjOverlapped
&&
!
m_bSelectionMode
)
if
(
pObjOverlapped
&&
!
m_bSelectionMode
)
{
{
colorizeOverlappedObject
(
pObjOverlapped
);
colorizeOverlappedObject
(
pObjOverlapped
);
...
...
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