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
d8d7bd68
Kaydet (Commit)
d8d7bd68
authored
Agu 16, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: Ibd5b7b03a80036ebd3214930b32d011ba7bbce9a
üst
bef6471c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
14 deletions
+6
-14
documenttype.cxx
unoxml/source/dom/documenttype.cxx
+2
-2
entitiesmap.cxx
unoxml/source/dom/entitiesmap.cxx
+1
-3
entitiesmap.hxx
unoxml/source/dom/entitiesmap.hxx
+1
-3
notationsmap.cxx
unoxml/source/dom/notationsmap.cxx
+1
-3
notationsmap.hxx
unoxml/source/dom/notationsmap.hxx
+1
-3
No files found.
unoxml/source/dom/documenttype.cxx
Dosyayı görüntüle @
d8d7bd68
...
@@ -48,7 +48,7 @@ namespace DOM
...
@@ -48,7 +48,7 @@ namespace DOM
Reference
<
XNamedNodeMap
>
aMap
;
Reference
<
XNamedNodeMap
>
aMap
;
if
(
m_aDtdPtr
!=
NULL
)
if
(
m_aDtdPtr
!=
NULL
)
{
{
aMap
.
set
(
new
CEntitiesMap
(
this
,
m_rMutex
));
aMap
.
set
(
new
CEntitiesMap
(
this
));
}
}
return
aMap
;
return
aMap
;
}
}
...
@@ -89,7 +89,7 @@ namespace DOM
...
@@ -89,7 +89,7 @@ namespace DOM
Reference
<
XNamedNodeMap
>
aMap
;
Reference
<
XNamedNodeMap
>
aMap
;
if
(
m_aDtdPtr
!=
NULL
)
if
(
m_aDtdPtr
!=
NULL
)
{
{
aMap
.
set
(
new
CNotationsMap
(
this
,
m_rMutex
));
aMap
.
set
(
new
CNotationsMap
(
this
));
}
}
return
aMap
;
return
aMap
;
}
}
...
...
unoxml/source/dom/entitiesmap.cxx
Dosyayı görüntüle @
d8d7bd68
...
@@ -24,10 +24,8 @@
...
@@ -24,10 +24,8 @@
namespace
DOM
namespace
DOM
{
{
CEntitiesMap
::
CEntitiesMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
,
CEntitiesMap
::
CEntitiesMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
)
::
osl
::
Mutex
&
rMutex
)
:
m_pDocType
(
pDocType
)
:
m_pDocType
(
pDocType
)
,
m_rMutex
(
rMutex
)
{
{
}
}
...
...
unoxml/source/dom/entitiesmap.hxx
Dosyayı görüntüle @
d8d7bd68
...
@@ -43,11 +43,9 @@ namespace DOM
...
@@ -43,11 +43,9 @@ namespace DOM
{
{
private
:
private
:
::
rtl
::
Reference
<
CDocumentType
>
const
m_pDocType
;
::
rtl
::
Reference
<
CDocumentType
>
const
m_pDocType
;
::
osl
::
Mutex
&
m_rMutex
;
public
:
public
:
CEntitiesMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
,
CEntitiesMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
);
::
osl
::
Mutex
&
rMutex
);
/**
/**
The number of nodes in this map.
The number of nodes in this map.
...
...
unoxml/source/dom/notationsmap.cxx
Dosyayı görüntüle @
d8d7bd68
...
@@ -25,10 +25,8 @@
...
@@ -25,10 +25,8 @@
namespace
DOM
namespace
DOM
{
{
CNotationsMap
::
CNotationsMap
(
CNotationsMap
::
CNotationsMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
,
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
)
::
osl
::
Mutex
&
rMutex
)
:
m_pDocType
(
pDocType
)
:
m_pDocType
(
pDocType
)
,
m_rMutex
(
rMutex
)
{
{
}
}
...
...
unoxml/source/dom/notationsmap.hxx
Dosyayı görüntüle @
d8d7bd68
...
@@ -43,11 +43,9 @@ namespace DOM
...
@@ -43,11 +43,9 @@ namespace DOM
{
{
private
:
private
:
::
rtl
::
Reference
<
CDocumentType
>
const
m_pDocType
;
::
rtl
::
Reference
<
CDocumentType
>
const
m_pDocType
;
::
osl
::
Mutex
&
m_rMutex
;
public
:
public
:
CNotationsMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
,
CNotationsMap
(
::
rtl
::
Reference
<
CDocumentType
>
const
&
pDocType
);
::
osl
::
Mutex
&
rMutex
);
/**
/**
The number of nodes in this map.
The number of nodes in this map.
...
...
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