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
94f11455
Kaydet (Commit)
94f11455
authored
Ock 21, 2012
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improve checking for emptiness
üst
3bb278f5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
DrawViewWrapper.cxx
chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
+1
-1
PieChartTypeTemplate.cxx
chart2/source/model/template/PieChartTypeTemplate.cxx
+1
-1
xmlexprt.cxx
sc/source/filter/xml/xmlexprt.cxx
+4
-4
viewmdi.cxx
sw/source/ui/uiview/viewmdi.cxx
+1
-1
No files found.
chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
Dosyayı görüntüle @
94f11455
...
@@ -221,7 +221,7 @@ SdrObject* DrawViewWrapper::getHitObject( const Point& rPnt ) const
...
@@ -221,7 +221,7 @@ SdrObject* DrawViewWrapper::getHitObject( const Point& rPnt ) const
const
basegfx
::
B2DPoint
aHitPoint
(
rPnt
.
X
(),
rPnt
.
Y
());
const
basegfx
::
B2DPoint
aHitPoint
(
rPnt
.
X
(),
rPnt
.
Y
());
getAllHit3DObjectsSortedFrontToBack
(
aHitPoint
,
*
pScene
,
aHitList
);
getAllHit3DObjectsSortedFrontToBack
(
aHitPoint
,
*
pScene
,
aHitList
);
if
(
aHitList
.
size
())
if
(
!
aHitList
.
empty
())
{
{
// choose the frontmost hit 3D object of the scene
// choose the frontmost hit 3D object of the scene
pRet
=
const_cast
<
E3dCompoundObject
*
>
(
aHitList
[
0
]);
pRet
=
const_cast
<
E3dCompoundObject
*
>
(
aHitList
[
0
]);
...
...
chart2/source/model/template/PieChartTypeTemplate.cxx
Dosyayı görüntüle @
94f11455
...
@@ -343,7 +343,7 @@ sal_Bool SAL_CALL PieChartTypeTemplate::matchesTemplate(
...
@@ -343,7 +343,7 @@ sal_Bool SAL_CALL PieChartTypeTemplate::matchesTemplate(
DiagramHelper
::
getDataSeriesFromDiagram
(
xDiagram
));
DiagramHelper
::
getDataSeriesFromDiagram
(
xDiagram
));
//check offset of outer series
//check offset of outer series
if
(
aSeriesVec
.
size
()
)
if
(
!
aSeriesVec
.
empty
()
)
{
{
sal_Int32
nOuterSeriesIndex
=
0
;
//@todo in future this will depend on Orientation of the radius axis scale
sal_Int32
nOuterSeriesIndex
=
0
;
//@todo in future this will depend on Orientation of the radius axis scale
Reference
<
chart2
::
XDataSeries
>
xSeries
(
aSeriesVec
[
nOuterSeriesIndex
]
);
Reference
<
chart2
::
XDataSeries
>
xSeries
(
aSeriesVec
[
nOuterSeriesIndex
]
);
...
...
sc/source/filter/xml/xmlexprt.cxx
Dosyayı görüntüle @
94f11455
...
@@ -1892,7 +1892,7 @@ void ScXMLExport::AddStyleFromCells(const uno::Reference<beans::XPropertySet>& x
...
@@ -1892,7 +1892,7 @@ void ScXMLExport::AddStyleFromCells(const uno::Reference<beans::XPropertySet>& x
xProperties
->
getPropertyValue
(
SC_NUMBERFORMAT
)
>>=
nNumberFormat
;
xProperties
->
getPropertyValue
(
SC_NUMBERFORMAT
)
>>=
nNumberFormat
;
if
(
!
sStyleName
.
isEmpty
())
if
(
!
sStyleName
.
isEmpty
())
{
{
if
(
xPropStates
.
size
())
if
(
!
xPropStates
.
empty
())
{
{
sal_Int32
nIndex
;
sal_Int32
nIndex
;
if
(
pOldName
)
if
(
pOldName
)
...
@@ -1968,7 +1968,7 @@ void ScXMLExport::AddStyleFromColumn(const uno::Reference<beans::XPropertySet>&
...
@@ -1968,7 +1968,7 @@ void ScXMLExport::AddStyleFromColumn(const uno::Reference<beans::XPropertySet>&
rtl
::
OUString
SC_SCOLUMNPREFIX
(
RTL_CONSTASCII_USTRINGPARAM
(
XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_PREFIX
));
rtl
::
OUString
SC_SCOLUMNPREFIX
(
RTL_CONSTASCII_USTRINGPARAM
(
XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_PREFIX
));
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xColumnStylesExportPropertySetMapper
->
Filter
(
xColumnProperties
));
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xColumnStylesExportPropertySetMapper
->
Filter
(
xColumnProperties
));
if
(
xPropStates
.
size
())
if
(
!
xPropStates
.
empty
())
{
{
std
::
vector
<
XMLPropertyState
>::
iterator
aItr
(
xPropStates
.
begin
());
std
::
vector
<
XMLPropertyState
>::
iterator
aItr
(
xPropStates
.
begin
());
std
::
vector
<
XMLPropertyState
>::
iterator
aEndItr
(
xPropStates
.
end
());
std
::
vector
<
XMLPropertyState
>::
iterator
aEndItr
(
xPropStates
.
end
());
...
@@ -2013,7 +2013,7 @@ void ScXMLExport::AddStyleFromRow(const uno::Reference<beans::XPropertySet>& xRo
...
@@ -2013,7 +2013,7 @@ void ScXMLExport::AddStyleFromRow(const uno::Reference<beans::XPropertySet>& xRo
rtl
::
OUString
SC_SROWPREFIX
(
RTL_CONSTASCII_USTRINGPARAM
(
XML_STYLE_FAMILY_TABLE_ROW_STYLES_PREFIX
));
rtl
::
OUString
SC_SROWPREFIX
(
RTL_CONSTASCII_USTRINGPARAM
(
XML_STYLE_FAMILY_TABLE_ROW_STYLES_PREFIX
));
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xRowStylesExportPropertySetMapper
->
Filter
(
xRowProperties
));
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xRowStylesExportPropertySetMapper
->
Filter
(
xRowProperties
));
if
(
xPropStates
.
size
())
if
(
!
xPropStates
.
empty
())
{
{
rtl
::
OUString
sParent
;
rtl
::
OUString
sParent
;
if
(
pOldName
)
if
(
pOldName
)
...
@@ -2365,7 +2365,7 @@ void ScXMLExport::_ExportAutoStyles()
...
@@ -2365,7 +2365,7 @@ void ScXMLExport::_ExportAutoStyles()
if
(
xTableProperties
.
is
())
if
(
xTableProperties
.
is
())
{
{
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xTableStylesExportPropertySetMapper
->
Filter
(
xTableProperties
));
std
::
vector
<
XMLPropertyState
>
xPropStates
(
xTableStylesExportPropertySetMapper
->
Filter
(
xTableProperties
));
if
(
xPropStates
.
size
())
if
(
!
xPropStates
.
empty
())
{
{
rtl
::
OUString
sParent
;
rtl
::
OUString
sParent
;
rtl
::
OUString
sName
;
rtl
::
OUString
sName
;
...
...
sw/source/ui/uiview/viewmdi.cxx
Dosyayı görüntüle @
94f11455
...
@@ -460,7 +460,7 @@ IMPL_STATIC_LINK( SwView, MoveNavigationHdl, bool *, pbNext )
...
@@ -460,7 +460,7 @@ IMPL_STATIC_LINK( SwView, MoveNavigationHdl, bool *, pbNext )
}
}
// move
// move
if
(
vNavMarks
.
size
())
if
(
!
vNavMarks
.
empty
())
{
{
if
(
bNext
)
if
(
bNext
)
{
{
...
...
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