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
1fe8e60c
Kaydet (Commit)
1fe8e60c
authored
Mar 01, 2016
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:unuseddefaultparam in reportdesign
Change-Id: I7663ed82da85794ed8409f03e21940cd26786c5a
üst
1e34462c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
DesignView.hxx
reportdesign/source/ui/inc/DesignView.hxx
+1
-1
UITools.hxx
reportdesign/source/ui/inc/UITools.hxx
+1
-2
UITools.cxx
reportdesign/source/ui/misc/UITools.cxx
+2
-2
DesignView.cxx
reportdesign/source/ui/report/DesignView.cxx
+2
-2
No files found.
reportdesign/source/ui/inc/DesignView.hxx
Dosyayı görüntüle @
1fe8e60c
...
...
@@ -137,7 +137,7 @@ namespace rptui
/** align all marked objects in all sections
*/
void
alignMarkedObjects
(
sal_Int32
_nControlModification
,
bool
_bAlignAtSection
,
bool
bBoundRects
=
false
);
void
alignMarkedObjects
(
sal_Int32
_nControlModification
,
bool
_bAlignAtSection
);
/** All objects will be marked.
*/
...
...
reportdesign/source/ui/inc/UITools.hxx
Dosyayı görüntüle @
1fe8e60c
...
...
@@ -147,10 +147,9 @@ namespace rptui
* \param _pObj
* \param _rPage
* \param _rView
* \param _bAllObjects if <TRUE/> all objects are taken into account, otherwise only not marked ones
* \return the object which is overlapped, otherwise <NULL/>. If the given object is not of type OUnoObject <NULL/> will be returned.
*/
SdrObject
*
isOver
(
SdrObject
*
_pObj
,
SdrPage
&
_rPage
,
SdrView
&
_rView
,
bool
_bAllObjects
=
false
);
SdrObject
*
isOver
(
SdrObject
*
_pObj
,
SdrPage
&
_rPage
,
SdrView
&
_rView
);
/** retrieves the names of the parameters of the command which the given RowSet is bound to
*/
...
...
reportdesign/source/ui/misc/UITools.cxx
Dosyayı görüntüle @
1fe8e60c
...
...
@@ -906,13 +906,13 @@ SdrObject* isOver(const Rectangle& _rRect,SdrPage& _rPage,SdrView& _rView,bool _
}
SdrObject
*
isOver
(
SdrObject
*
_pObj
,
SdrPage
&
_rPage
,
SdrView
&
_rView
,
bool
_bUnMarkedObjects
)
SdrObject
*
isOver
(
SdrObject
*
_pObj
,
SdrPage
&
_rPage
,
SdrView
&
_rView
)
{
SdrObject
*
pOverlappedObj
=
nullptr
;
if
(
dynamic_cast
<
OUnoObject
*>
(
_pObj
)
!=
nullptr
||
dynamic_cast
<
OOle2Obj
*>
(
_pObj
)
!=
nullptr
)
// this doesn't need to be done for shapes
{
Rectangle
aRect
=
_pObj
->
GetCurrentBoundRect
();
pOverlappedObj
=
isOver
(
aRect
,
_rPage
,
_rView
,
_bUnMarkedObjects
,
_pObj
);
pOverlappedObj
=
isOver
(
aRect
,
_rPage
,
_rView
,
false
/*_bUnMarkedObjects*/
,
_pObj
);
}
return
pOverlappedObj
;
}
...
...
reportdesign/source/ui/report/DesignView.cxx
Dosyayı görüntüle @
1fe8e60c
...
...
@@ -581,9 +581,9 @@ void ODesignView::setCurrentPage(const OUString& _sLastActivePage)
m_pPropWin
->
setCurrentPage
(
_sLastActivePage
);
}
void
ODesignView
::
alignMarkedObjects
(
sal_Int32
_nControlModification
,
bool
_bAlignAtSection
,
bool
bBoundRects
)
void
ODesignView
::
alignMarkedObjects
(
sal_Int32
_nControlModification
,
bool
_bAlignAtSection
)
{
m_aScrollWindow
->
alignMarkedObjects
(
_nControlModification
,
_bAlignAtSection
,
bBoundRects
);
m_aScrollWindow
->
alignMarkedObjects
(
_nControlModification
,
_bAlignAtSection
);
}
bool
ODesignView
::
handleKeyEvent
(
const
KeyEvent
&
_rEvent
)
...
...
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