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
c8a7a677
Kaydet (Commit)
c8a7a677
authored
May 04, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cppcheck: noExplicitConstructor
Change-Id: Icb4273515082bffaeb9d8f3ebcec8d76fa4192ef
üst
24736e72
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
objmisc.cxx
sfx2/source/doc/objmisc.cxx
+1
-1
objxtor.cxx
sfx2/source/doc/objxtor.cxx
+2
-2
frmload.cxx
sfx2/source/view/frmload.cxx
+1
-1
impframe.hxx
sfx2/source/view/impframe.hxx
+1
-1
impviewframe.hxx
sfx2/source/view/impviewframe.hxx
+1
-1
No files found.
sfx2/source/doc/objmisc.cxx
Dosyayı görüntüle @
c8a7a677
...
...
@@ -146,7 +146,7 @@ private:
bool
bAlert
;
public
:
SfxHeaderAttributes_Impl
(
SfxObjectShell
*
pSh
)
:
explicit
SfxHeaderAttributes_Impl
(
SfxObjectShell
*
pSh
)
:
SvKeyValueIterator
(),
pDoc
(
pSh
),
xIter
(
pSh
->
GetMedium
()
->
GetHeaderAttributes_Impl
()
),
bAlert
(
false
)
{}
...
...
sfx2/source/doc/objxtor.cxx
Dosyayı görüntüle @
c8a7a677
...
...
@@ -151,7 +151,7 @@ class SfxModelListener_Impl : public ::cppu::WeakImplHelper1< ::com::sun::star::
{
SfxObjectShell
*
mpDoc
;
public
:
SfxModelListener_Impl
(
SfxObjectShell
*
pDoc
)
:
mpDoc
(
pDoc
)
{};
explicit
SfxModelListener_Impl
(
SfxObjectShell
*
pDoc
)
:
mpDoc
(
pDoc
)
{};
virtual
void
SAL_CALL
queryClosing
(
const
com
::
sun
::
star
::
lang
::
EventObject
&
aEvent
,
sal_Bool
bDeliverOwnership
)
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
com
::
sun
::
star
::
util
::
CloseVetoException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
notifyClosing
(
const
com
::
sun
::
star
::
lang
::
EventObject
&
aEvent
)
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
@@ -569,7 +569,7 @@ bool SfxObjectShell::IsInPrepareClose() const
struct
BoolEnv_Impl
{
SfxObjectShell_Impl
*
pImp
;
BoolEnv_Impl
(
SfxObjectShell_Impl
*
pImpP
)
:
pImp
(
pImpP
)
explicit
BoolEnv_Impl
(
SfxObjectShell_Impl
*
pImpP
)
:
pImp
(
pImpP
)
{
pImpP
->
bInPrepareClose
=
true
;
}
~
BoolEnv_Impl
()
{
pImp
->
bInPrepareClose
=
false
;
}
};
...
...
sfx2/source/view/frmload.cxx
Dosyayı görüntüle @
c8a7a677
...
...
@@ -108,7 +108,7 @@ class SfxFrameLoader_Impl : public ::cppu::WeakImplHelper2< css::frame::XSynchro
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
m_aContext
;
public
:
SfxFrameLoader_Impl
(
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
_rxContext
);
explicit
SfxFrameLoader_Impl
(
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
_rxContext
);
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
sfx2/source/view/impframe.hxx
Dosyayı görüntüle @
c8a7a677
...
...
@@ -56,7 +56,7 @@ public:
bool
bLockResize
;
bool
bMenuBarOn
;
SfxFrame_Impl
(
SfxFrame
*
pAntiImplP
)
explicit
SfxFrame_Impl
(
SfxFrame
*
pAntiImplP
)
:
nType
(
0L
)
,
pCurrentViewFrame
(
NULL
)
,
pDescr
(
NULL
)
...
...
sfx2/source/view/impviewframe.hxx
Dosyayı görüntüle @
c8a7a677
...
...
@@ -53,7 +53,7 @@ struct SfxViewFrame_Impl
::
boost
::
optional
<
bool
>
aHasToolPanels
;
SfxViewFrame_Impl
(
SfxFrame
&
i_rFrame
)
explicit
SfxViewFrame_Impl
(
SfxFrame
&
i_rFrame
)
:
rFrame
(
i_rFrame
)
,
pReloader
(
0
)
,
pWindow
(
0
)
...
...
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