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
21773f6d
Kaydet (Commit)
21773f6d
authored
May 02, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: noExplicitConstructor
Change-Id: I0b1cac50f9e158004f8c1b8294b7a1b9f21f9628
üst
5c4955ed
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
7 deletions
+10
-7
AccessibleToolPanelDeck.cxx
accessibility/source/extended/AccessibleToolPanelDeck.cxx
+1
-1
AccessibleToolPanelDeckTabBar.cxx
...ibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
+2
-2
AccessibleToolPanelDeckTabBarItem.cxx
...ity/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
+1
-1
textwindowaccessibility.cxx
accessibility/source/extended/textwindowaccessibility.cxx
+4
-1
animcore.cxx
animations/source/animcore/animcore.cxx
+2
-2
No files found.
accessibility/source/extended/AccessibleToolPanelDeck.cxx
Dosyayı görüntüle @
21773f6d
...
...
@@ -106,7 +106,7 @@ namespace accessibility
class
MethodGuard
{
public
:
MethodGuard
(
AccessibleToolPanelDeck_Impl
&
i_rImpl
)
explicit
MethodGuard
(
AccessibleToolPanelDeck_Impl
&
i_rImpl
)
:
m_aGuard
()
{
i_rImpl
.
checkDisposed
();
...
...
accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
Dosyayı görüntüle @
21773f6d
...
...
@@ -68,7 +68,7 @@ namespace accessibility
class
AccessibleWrapper
:
public
AccessibleWrapper_Base
{
public
:
AccessibleWrapper
(
const
Reference
<
XAccessibleContext
>&
i_rContext
)
explicit
AccessibleWrapper
(
const
Reference
<
XAccessibleContext
>&
i_rContext
)
:
m_xContext
(
i_rContext
)
{
}
...
...
@@ -258,7 +258,7 @@ namespace accessibility
class
MethodGuard
{
public
:
MethodGuard
(
AccessibleToolPanelTabBar_Impl
&
i_rImpl
)
explicit
MethodGuard
(
AccessibleToolPanelTabBar_Impl
&
i_rImpl
)
:
m_aGuard
()
{
i_rImpl
.
checkDisposed
();
...
...
accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
Dosyayı görüntüle @
21773f6d
...
...
@@ -221,7 +221,7 @@ namespace accessibility
class
ItemMethodGuard
{
public
:
ItemMethodGuard
(
AccessibleToolPanelDeckTabBarItem_Impl
&
i_rImpl
)
explicit
ItemMethodGuard
(
AccessibleToolPanelDeckTabBarItem_Impl
&
i_rImpl
)
:
m_aGuard
()
{
i_rImpl
.
checkDisposed
();
...
...
accessibility/source/extended/textwindowaccessibility.cxx
Dosyayı görüntüle @
21773f6d
...
...
@@ -982,7 +982,10 @@ Document::retrieveCharacterBounds(Paragraph const * pParagraph,
struct
IndexCompare
{
const
css
::
beans
::
PropertyValue
*
pValues
;
IndexCompare
(
const
css
::
beans
::
PropertyValue
*
pVals
)
:
pValues
(
pVals
)
{}
explicit
IndexCompare
(
const
css
::
beans
::
PropertyValue
*
pVals
)
:
pValues
(
pVals
)
{
}
bool
operator
()
(
const
sal_Int32
&
a
,
const
sal_Int32
&
b
)
const
{
return
pValues
[
a
].
Name
<
pValues
[
b
].
Name
;
...
...
animations/source/animcore/animcore.cxx
Dosyayı görüntüle @
21773f6d
...
...
@@ -129,8 +129,8 @@ public:
class
AnimationNode
:
public
AnimationNodeBase
{
public
:
AnimationNode
(
sal_Int16
nNodeType
);
AnimationNode
(
const
AnimationNode
&
rNode
);
explicit
AnimationNode
(
sal_Int16
nNodeType
);
explicit
AnimationNode
(
const
AnimationNode
&
rNode
);
virtual
~
AnimationNode
();
// XInterface
...
...
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