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
44790193
Kaydet (Commit)
44790193
authored
Mar 27, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:staticfunction
Change-Id: I982ba552579019e4902ae59fddf14a6b34ba5954
üst
c4a9241f
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
15 deletions
+17
-15
progressmonitor.hxx
UnoControls/source/inc/progressmonitor.hxx
+2
-2
bitmapdevice.cxx
basebmp/source/bitmapdevice.cxx
+2
-2
hommatrixtemplate.hxx
basegfx/source/inc/hommatrixtemplate.hxx
+1
-1
b2dhommatrix.cxx
basegfx/source/matrix/b2dhommatrix.cxx
+3
-2
b3dhommatrix.cxx
basegfx/source/matrix/b3dhommatrix.cxx
+3
-2
b2dpolypolygoncutter.cxx
basegfx/source/polygon/b2dpolypolygoncutter.cxx
+1
-1
b2drangeclipper.cxx
basegfx/source/range/b2drangeclipper.cxx
+1
-1
accessoradapters.hxx
include/basebmp/accessoradapters.hxx
+4
-4
No files found.
UnoControls/source/inc/progressmonitor.hxx
Dosyayı görüntüle @
44790193
...
...
@@ -403,8 +403,8 @@ private:
#ifdef DBG_UTIL
bool
impl_debug_checkParameter
(
const
OUString
&
sTopic
,
const
OUString
&
sText
,
bool
bbeforeProgress
);
// addText, updateText
bool
impl_debug_checkParameter
(
const
OUString
&
rTopic
,
bool
bbeforeProgress
);
// removeText
static
bool
impl_debug_checkParameter
(
const
OUString
&
sTopic
,
const
OUString
&
sText
,
bool
bbeforeProgress
);
// addText, updateText
static
bool
impl_debug_checkParameter
(
const
OUString
&
rTopic
,
bool
bbeforeProgress
);
// removeText
#endif
...
...
basebmp/source/bitmapdevice.cxx
Dosyayı görüntüle @
44790193
...
...
@@ -373,7 +373,7 @@ namespace
damaged
(
basegfx
::
B2IBox
(
rDamagePoint
,
aEnd
)
);
}
boost
::
shared_ptr
<
BitmapRenderer
>
getCompatibleBitmap
(
const
BitmapDeviceSharedPtr
&
bmp
)
const
static
boost
::
shared_ptr
<
BitmapRenderer
>
getCompatibleBitmap
(
const
BitmapDeviceSharedPtr
&
bmp
)
{
return
boost
::
dynamic_pointer_cast
<
BitmapRenderer
>
(
bmp
);
}
...
...
@@ -405,7 +405,7 @@ namespace
return
boost
::
dynamic_pointer_cast
<
mask_bitmap_type
>
(
bmp
).
get
()
!=
NULL
;
}
boost
::
shared_ptr
<
alphamask_bitmap_type
>
getCompatibleAlphaMask
(
const
BitmapDeviceSharedPtr
&
bmp
)
const
static
boost
::
shared_ptr
<
alphamask_bitmap_type
>
getCompatibleAlphaMask
(
const
BitmapDeviceSharedPtr
&
bmp
)
{
return
boost
::
dynamic_pointer_cast
<
alphamask_bitmap_type
>
(
bmp
);
}
...
...
basegfx/source/inc/hommatrixtemplate.hxx
Dosyayı görüntüle @
44790193
...
...
@@ -141,7 +141,7 @@ namespace basegfx
}
}
s
al_uInt16
getEdgeLength
()
const
{
return
RowSize
;
}
s
tatic
sal_uInt16
getEdgeLength
()
{
return
RowSize
;
}
double
get
(
sal_uInt16
nRow
,
sal_uInt16
nColumn
)
const
{
...
...
basegfx/source/matrix/b2dhommatrix.cxx
Dosyayı görüntüle @
44790193
...
...
@@ -27,7 +27,8 @@
namespace
basegfx
{
class
Impl2DHomMatrix
:
public
::
basegfx
::
internal
::
ImplHomMatrixTemplate
<
3
>
typedef
::
basegfx
::
internal
::
ImplHomMatrixTemplate
<
3
>
Impl2DHomMatrix_Base
;
class
Impl2DHomMatrix
:
public
Impl2DHomMatrix_Base
{
};
...
...
@@ -111,7 +112,7 @@ namespace basegfx
bool
B2DHomMatrix
::
invert
()
{
Impl2DHomMatrix
aWork
(
*
mpImpl
);
sal_uInt16
*
pIndex
=
new
sal_uInt16
[
mpImpl
->
getEdgeLength
()];
sal_uInt16
*
pIndex
=
new
sal_uInt16
[
Impl2DHomMatrix_Base
::
getEdgeLength
()];
sal_Int16
nParity
;
if
(
aWork
.
ludcmp
(
pIndex
,
nParity
))
...
...
basegfx/source/matrix/b3dhommatrix.cxx
Dosyayı görüntüle @
44790193
...
...
@@ -24,7 +24,8 @@
namespace
basegfx
{
class
Impl3DHomMatrix
:
public
::
basegfx
::
internal
::
ImplHomMatrixTemplate
<
4
>
typedef
::
basegfx
::
internal
::
ImplHomMatrixTemplate
<
4
>
Impl3DHomMatrix_Base
;
class
Impl3DHomMatrix
:
public
Impl3DHomMatrix_Base
{
};
...
...
@@ -82,7 +83,7 @@ namespace basegfx
bool
B3DHomMatrix
::
invert
()
{
Impl3DHomMatrix
aWork
(
*
mpImpl
);
sal_uInt16
*
pIndex
=
new
sal_uInt16
[
mpImpl
->
getEdgeLength
()];
sal_uInt16
*
pIndex
=
new
sal_uInt16
[
Impl3DHomMatrix_Base
::
getEdgeLength
()];
sal_Int16
nParity
;
if
(
aWork
.
ludcmp
(
pIndex
,
nParity
))
...
...
basegfx/source/polygon/b2dpolypolygoncutter.cxx
Dosyayı görüntüle @
44790193
...
...
@@ -137,7 +137,7 @@ namespace basegfx
}
}
bool
impLeftOfEdges
(
const
B2DVector
&
rVecA
,
const
B2DVector
&
rVecB
,
const
B2DVector
&
rTest
)
static
bool
impLeftOfEdges
(
const
B2DVector
&
rVecA
,
const
B2DVector
&
rVecB
,
const
B2DVector
&
rTest
)
{
// tests if rTest is left of both directed line segments along the line -rVecA, rVecB. Test is
// with border.
...
...
basegfx/source/range/b2drangeclipper.cxx
Dosyayı görüntüle @
44790193
...
...
@@ -484,7 +484,7 @@ namespace basegfx
}
/// True when sweep line hits our own active edge
bool
metOwnEdge
(
const
SweepLineEvent
&
rEvent
,
static
bool
metOwnEdge
(
const
SweepLineEvent
&
rEvent
,
ActiveEdge
&
rActiveEdge
)
{
const
bool
bHitOwnEdge
=&
rEvent
.
getRect
()
==
&
rActiveEdge
.
getRect
();
...
...
include/basebmp/accessoradapters.hxx
Dosyayı görüntüle @
44790193
...
...
@@ -208,9 +208,9 @@ public:
typename
SetterFunctor
::
result_type
setter
(
static
typename
SetterFunctor
::
result_type
setter
(
typename
SetterFunctor
::
first_argument_type
v1
,
argument_type
v2
)
const
argument_type
v2
)
{
return
maSetterFunctor
(
v1
,
v2
);
}
...
...
@@ -343,10 +343,10 @@ public:
typename
Functor
::
result_type
setter
(
static
typename
Functor
::
result_type
setter
(
typename
Functor
::
first_argument_type
v1
,
typename
Functor
::
second_argument_type
v2
,
argument_type
v3
)
const
argument_type
v3
)
{
return
maSetterFunctor
(
v1
,
v2
,
v3
);
}
...
...
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