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
c0fe0578
Kaydet (Commit)
c0fe0578
authored
May 25, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: noExplicitConstructor
Change-Id: Ic323f07196d8a0d106d9ddf73a06db377c23fb98
üst
3185b6c8
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
vbacontrol.cxx
vbahelper/source/msforms/vbacontrol.cxx
+2
-2
vbacontrols.cxx
vbahelper/source/msforms/vbacontrols.cxx
+1
-1
vbalistcontrolhelper.hxx
vbahelper/source/msforms/vbalistcontrolhelper.hxx
+1
-1
vbamultipage.cxx
vbahelper/source/msforms/vbamultipage.cxx
+1
-1
vbanewfont.hxx
vbahelper/source/msforms/vbanewfont.hxx
+1
-1
vbacommandbarcontrols.cxx
vbahelper/source/vbahelper/vbacommandbarcontrols.cxx
+1
-1
vbadocumentsbase.cxx
vbahelper/source/vbahelper/vbadocumentsbase.cxx
+1
-1
No files found.
vbahelper/source/msforms/vbacontrol.cxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -99,7 +99,7 @@ class ScVbaControlListener: public cppu::WeakImplHelper1< lang::XEventListener >
private
:
ScVbaControl
*
pControl
;
public
:
ScVbaControlListener
(
ScVbaControl
*
pTmpControl
);
explicit
ScVbaControlListener
(
ScVbaControl
*
pTmpControl
);
virtual
~
ScVbaControlListener
();
virtual
void
SAL_CALL
disposing
(
const
lang
::
EventObject
&
rEventObject
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
};
...
...
@@ -776,7 +776,7 @@ class ControlProviderImpl : public ControlProvider_BASE
{
uno
::
Reference
<
uno
::
XComponentContext
>
m_xCtx
;
public
:
ControlProviderImpl
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xCtx
)
:
m_xCtx
(
xCtx
)
{}
explicit
ControlProviderImpl
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xCtx
)
:
m_xCtx
(
xCtx
)
{}
virtual
uno
::
Reference
<
msforms
::
XControl
>
SAL_CALL
createControl
(
const
uno
::
Reference
<
drawing
::
XControlShape
>&
xControl
,
const
uno
::
Reference
<
frame
::
XModel
>&
xDocOwner
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
};
...
...
vbahelper/source/msforms/vbacontrols.cxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -82,7 +82,7 @@ private:
}
}
public
:
ControlArrayWrapper
(
const
uno
::
Reference
<
awt
::
XControl
>&
xDialog
)
explicit
ControlArrayWrapper
(
const
uno
::
Reference
<
awt
::
XControl
>&
xDialog
)
{
try
{
...
...
vbahelper/source/msforms/vbalistcontrolhelper.hxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -27,7 +27,7 @@ class ListControlHelper
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
m_xProps
;
public
:
ListControlHelper
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
rxControl
)
:
m_xProps
(
rxControl
){}
explicit
ListControlHelper
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
rxControl
)
:
m_xProps
(
rxControl
){}
virtual
~
ListControlHelper
()
{}
void
SAL_CALL
AddItem
(
const
css
::
uno
::
Any
&
pvargItem
,
const
css
::
uno
::
Any
&
pvargIndex
)
throw
(
css
::
uno
::
RuntimeException
);
void
SAL_CALL
removeItem
(
const
css
::
uno
::
Any
&
index
)
throw
(
css
::
uno
::
RuntimeException
);
...
...
vbahelper/source/msforms/vbamultipage.cxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -31,7 +31,7 @@ class PagesImpl : public PagesImpl_Base
{
sal_Int32
mnPages
;
public
:
PagesImpl
(
sal_Int32
nPages
)
:
mnPages
(
nPages
)
{}
explicit
PagesImpl
(
sal_Int32
nPages
)
:
mnPages
(
nPages
)
{}
virtual
::
sal_Int32
SAL_CALL
getCount
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
{
return
mnPages
;
}
virtual
uno
::
Any
SAL_CALL
getByIndex
(
::
sal_Int32
Index
)
throw
(
lang
::
IndexOutOfBoundsException
,
lang
::
WrappedTargetException
,
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
{
...
...
vbahelper/source/msforms/vbanewfont.hxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -30,7 +30,7 @@ typedef cppu::WeakImplHelper1< ov::msforms::XNewFont > VbaNewFont_BASE;
class
VbaNewFont
:
public
VbaNewFont_BASE
{
public
:
VbaNewFont
(
explicit
VbaNewFont
(
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
rxModelProps
)
throw
(
css
::
uno
::
RuntimeException
);
// XNewFont attributes
...
...
vbahelper/source/vbahelper/vbacommandbarcontrols.cxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -29,7 +29,7 @@ class CommandBarControlEnumeration : public CommandBarControlEnumeration_BASE
CommandBarControls_BASE
*
m_pCommandBarControls
;
sal_Int32
m_nCurrentPosition
;
public
:
CommandBarControlEnumeration
(
CommandBarControls_BASE
*
pCommandBarControls
)
:
m_pCommandBarControls
(
pCommandBarControls
),
m_nCurrentPosition
(
0
)
{}
explicit
CommandBarControlEnumeration
(
CommandBarControls_BASE
*
pCommandBarControls
)
:
m_pCommandBarControls
(
pCommandBarControls
),
m_nCurrentPosition
(
0
)
{}
virtual
sal_Bool
SAL_CALL
hasMoreElements
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
{
if
(
m_nCurrentPosition
<
m_pCommandBarControls
->
getCount
()
)
...
...
vbahelper/source/vbahelper/vbadocumentsbase.cxx
Dosyayı görüntüle @
c0fe0578
...
...
@@ -80,7 +80,7 @@ public:
{
m_it
=
m_documents
.
begin
();
}
DocumentsEnumImpl
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
)
throw
(
uno
::
RuntimeException
)
:
m_xContext
(
xContext
)
explicit
DocumentsEnumImpl
(
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
)
throw
(
uno
::
RuntimeException
)
:
m_xContext
(
xContext
)
{
uno
::
Reference
<
frame
::
XDesktop2
>
xDesktop
=
frame
::
Desktop
::
create
(
m_xContext
);
uno
::
Reference
<
container
::
XEnumeration
>
mxComponents
=
xDesktop
->
getComponents
()
->
createEnumeration
();
...
...
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