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
43beae7f
Kaydet (Commit)
43beae7f
authored
Ock 21, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
standalone semicolon is deprecated as toplevel declaration
üst
de9ea83d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
Enterable.hxx
cppu/inc/cppu/Enterable.hxx
+9
-9
file.hxx
sal/inc/osl/file.hxx
+2
-2
No files found.
cppu/inc/cppu/Enterable.hxx
Dosyayı görüntüle @
43beae7f
...
@@ -46,16 +46,16 @@ public:
...
@@ -46,16 +46,16 @@ public:
virtual
void
v_callOut_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
=
0
;
virtual
void
v_callOut_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
=
0
;
virtual
int
v_isValid
(
rtl
::
OUString
*
pReason
)
=
0
;
virtual
int
v_isValid
(
rtl
::
OUString
*
pReason
)
=
0
;
virtual
~
Enterable
()
{}
;
virtual
~
Enterable
()
{}
public
:
public
:
inline
explicit
Enterable
(
void
);
inline
explicit
Enterable
(
void
);
inline
void
enter
(
void
)
{
m_enter
(
this
);}
;
inline
void
enter
(
void
)
{
m_enter
(
this
);}
inline
void
leave
(
void
)
{
m_leave
(
this
);}
;
inline
void
leave
(
void
)
{
m_leave
(
this
);}
inline
void
callInto_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
m_callInto_v
(
this
,
pCallee
,
pParam
);}
;
inline
void
callInto_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
m_callInto_v
(
this
,
pCallee
,
pParam
);}
inline
void
callOut_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
m_callOut_v
(
this
,
pCallee
,
pParam
);}
;
inline
void
callOut_v
(
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
m_callOut_v
(
this
,
pCallee
,
pParam
);}
inline
void
callInto
(
uno_EnvCallee
*
pCallee
,
...);
inline
void
callInto
(
uno_EnvCallee
*
pCallee
,
...);
inline
void
callOut
(
uno_EnvCallee
*
pCallee
,
...);
inline
void
callOut
(
uno_EnvCallee
*
pCallee
,
...);
...
@@ -67,12 +67,12 @@ private:
...
@@ -67,12 +67,12 @@ private:
Enterable
&
operator
=
(
Enterable
const
&
);
Enterable
&
operator
=
(
Enterable
const
&
);
};
};
extern
"C"
inline
void
Enterable_call_enter
(
void
*
context
)
{
((
Enterable
*
)
context
)
->
v_enter
();
}
;
extern
"C"
inline
void
Enterable_call_enter
(
void
*
context
)
{
((
Enterable
*
)
context
)
->
v_enter
();
}
extern
"C"
inline
void
Enterable_call_leave
(
void
*
context
)
{
((
Enterable
*
)
context
)
->
v_leave
();
}
;
extern
"C"
inline
void
Enterable_call_leave
(
void
*
context
)
{
((
Enterable
*
)
context
)
->
v_leave
();
}
extern
"C"
inline
void
Enterable_call_callInto_v
(
void
*
context
,
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
extern
"C"
inline
void
Enterable_call_callInto_v
(
void
*
context
,
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
((
Enterable
*
)
context
)
->
v_callInto_v
(
pCallee
,
pParam
);
}
;
{
((
Enterable
*
)
context
)
->
v_callInto_v
(
pCallee
,
pParam
);
}
extern
"C"
inline
void
Enterable_call_callOut_v
(
void
*
context
,
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
extern
"C"
inline
void
Enterable_call_callOut_v
(
void
*
context
,
uno_EnvCallee
*
pCallee
,
va_list
*
pParam
)
{
((
Enterable
*
)
context
)
->
v_callOut_v
(
pCallee
,
pParam
);
}
;
{
((
Enterable
*
)
context
)
->
v_callOut_v
(
pCallee
,
pParam
);
}
extern
"C"
inline
int
Enterable_call_isValid
(
void
*
context
,
rtl_uString
**
pReason
)
extern
"C"
inline
int
Enterable_call_isValid
(
void
*
context
,
rtl_uString
**
pReason
)
{
return
((
Enterable
*
)
context
)
->
v_isValid
((
rtl
::
OUString
*
)
pReason
);}
{
return
((
Enterable
*
)
context
)
->
v_isValid
((
rtl
::
OUString
*
)
pReason
);}
...
...
sal/inc/osl/file.hxx
Dosyayı görüntüle @
43beae7f
...
@@ -1595,7 +1595,7 @@ public:
...
@@ -1595,7 +1595,7 @@ public:
class
DirectoryCreationObserver
class
DirectoryCreationObserver
{
{
public
:
public
:
virtual
~
DirectoryCreationObserver
()
{}
;
virtual
~
DirectoryCreationObserver
()
{}
/** This method will be called when a new directory has been
/** This method will be called when a new directory has been
created and needs to be overwritten by derived classes.
created and needs to be overwritten by derived classes.
...
@@ -1693,7 +1693,7 @@ public:
...
@@ -1693,7 +1693,7 @@ public:
@see close()
@see close()
*/
*/
inline
sal_Bool
isOpen
()
{
return
_pData
!=
NULL
;
}
;
inline
sal_Bool
isOpen
()
{
return
_pData
!=
NULL
;
}
/** Close a directory.
/** Close a directory.
...
...
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