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
12b1d1cd
Kaydet (Commit)
12b1d1cd
authored
Agu 12, 2013
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Mark as const
Change-Id: I9277052ee9c6197cef7a46bd8f3ab9c5515c2502
üst
cc569401
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
12 additions
and
12 deletions
+12
-12
TextInputStream.cxx
io/source/TextInputStream/TextInputStream.cxx
+1
-1
TextOutputStream.cxx
io/source/TextOutputStream/TextOutputStream.cxx
+1
-1
acceptor.cxx
io/source/acceptor/acceptor.cxx
+1
-1
connector.cxx
io/source/connector/connector.cxx
+1
-1
factreg.cxx
io/source/stm/factreg.cxx
+1
-1
guesslang.cxx
lingucomponent/source/languageguessing/guesslang.cxx
+1
-1
gciterator.cxx
linguistic/source/gciterator.cxx
+2
-2
lngprophelp.cxx
linguistic/source/lngprophelp.cxx
+1
-1
lwpbackgroundstuff.cxx
lotuswordpro/source/filter/lwpbackgroundstuff.cxx
+1
-1
lwppttntbl.hxx
lotuswordpro/source/filter/lwppttntbl.hxx
+1
-1
service2_impl.cxx
...DevelopersGuide/Components/CppComponent/service2_impl.cxx
+1
-1
No files found.
io/source/TextInputStream/TextInputStream.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -471,7 +471,7 @@ Sequence< OUString > OTextInputStream::getSupportedServiceNames(void) throw()
using
namespace
io_TextInputStream
;
static
struct
ImplementationEntry
g_entries
[]
=
static
const
struct
ImplementationEntry
g_entries
[]
=
{
{
TextInputStream_CreateInstance
,
TextInputStream_getImplementationName
,
...
...
io/source/TextOutputStream/TextOutputStream.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -271,7 +271,7 @@ Sequence< OUString > OTextOutputStream::getSupportedServiceNames(void) throw()
using
namespace
io_TextOutputStream
;
static
struct
ImplementationEntry
g_entries
[]
=
static
const
struct
ImplementationEntry
g_entries
[]
=
{
{
TextOutputStream_CreateInstance
,
TextOutputStream_getImplementationName
,
...
...
io/source/acceptor/acceptor.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -311,7 +311,7 @@ namespace io_acceptor
using
namespace
io_acceptor
;
static
struct
ImplementationEntry
g_entries
[]
=
static
const
struct
ImplementationEntry
g_entries
[]
=
{
{
acceptor_CreateInstance
,
acceptor_getImplementationName
,
...
...
io/source/connector/connector.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -216,7 +216,7 @@ namespace stoc_connector
}
using
namespace
stoc_connector
;
static
struct
ImplementationEntry
g_entries
[]
=
static
const
struct
ImplementationEntry
g_entries
[]
=
{
{
connector_CreateInstance
,
connector_getImplementationName
,
...
...
io/source/stm/factreg.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -34,7 +34,7 @@ using namespace ::com::sun::star::registry;
using
namespace
io_stm
;
static
struct
ImplementationEntry
g_entries
[]
=
static
const
struct
ImplementationEntry
g_entries
[]
=
{
{
OPipeImpl_CreateInstance
,
OPipeImpl_getImplementationName
,
...
...
lingucomponent/source/languageguessing/guesslang.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -401,7 +401,7 @@ Reference< XInterface > SAL_CALL LangGuess_Impl_create(
//#### EXPORTED ### functions to allow for registration and creation of the UNO component
//##################################################################################################
static
struct
::
cppu
::
ImplementationEntry
s_component_entries
[]
=
static
const
struct
::
cppu
::
ImplementationEntry
s_component_entries
[]
=
{
{
LangGuess_Impl_create
,
getImplementationName_LangGuess_Impl
,
...
...
linguistic/source/gciterator.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -76,7 +76,7 @@ static uno::Sequence< OUString > GrammarCheckingIterator_getSupportedServiceName
// white space list: obtained from the fonts.config.txt of a Linux system.
static
sal_Unicode
aWhiteSpaces
[]
=
static
const
sal_Unicode
aWhiteSpaces
[]
=
{
0x0020
,
/* SPACE */
0x00a0
,
/* NO-BREAK SPACE */
...
...
@@ -128,7 +128,7 @@ static sal_Unicode aWhiteSpaces[] =
0xfffb
/* INTERLINEAR ANNOTATION TERMINATOR */
};
static
int
nWhiteSpaces
=
sizeof
(
aWhiteSpaces
)
/
sizeof
(
aWhiteSpaces
[
0
]
);
static
const
int
nWhiteSpaces
=
sizeof
(
aWhiteSpaces
)
/
sizeof
(
aWhiteSpaces
[
0
]
);
static
bool
lcl_IsWhiteSpace
(
sal_Unicode
cChar
)
{
...
...
linguistic/source/lngprophelp.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -51,7 +51,7 @@ static const char *aCH[] =
UPN_IS_USE_DICTIONARY_LIST
,
};
static
int
nCHCount
=
sizeof
(
aCH
)
/
sizeof
(
aCH
[
0
]);
static
const
int
nCHCount
=
sizeof
(
aCH
)
/
sizeof
(
aCH
[
0
]);
PropertyChgHelper
::
PropertyChgHelper
(
...
...
lotuswordpro/source/filter/lwpbackgroundstuff.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -87,7 +87,7 @@ void LwpBackgroundStuff::GetPattern(sal_uInt16 btPttnIndex, sal_uInt8* pPttnArra
if
(
pPttnArray
)
{
assert
((
2
<
btPttnIndex
)
&&
(
btPttnIndex
<
72
));
sal_uInt8
*
pTempArray
=
s_pLwpPatternTab
[
btPttnIndex
];
const
sal_uInt8
*
pTempArray
=
s_pLwpPatternTab
[
btPttnIndex
];
for
(
sal_uInt8
i
=
0
;
i
<
32
;
i
++
)
{
pPttnArray
[
i
]
=
(
i
%
4
==
0
)
?
pTempArray
[
7
-
i
/
4
]
:
0
;
...
...
lotuswordpro/source/filter/lwppttntbl.hxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -62,7 +62,7 @@
#ifndef _LTPATTERNTABLE_HXX
#define _LTPATTERNTABLE_HXX
static
sal_uInt8
s_pLwpPatternTab
[][
8
]
=
{
//Id Name
static
const
sal_uInt8
s_pLwpPatternTab
[][
8
]
=
{
//Id Name
{
0xDF
,
0xAF
,
0x77
,
0x77
,
0x77
,
0x77
,
0xFA
,
0xFD
},
//0 Transparent
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
},
//1 SolidForeground
{
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
},
//2 SolidBackground
...
...
odk/examples/DevelopersGuide/Components/CppComponent/service2_impl.cxx
Dosyayı görüntüle @
12b1d1cd
...
...
@@ -175,7 +175,7 @@ Reference< XInterface > SAL_CALL create_MyService2Impl(
/* shared lib exports implemented without helpers in service_impl1.cxx */
namespace
my_sc_impl
{
static
struct
::
cppu
::
ImplementationEntry
s_component_entries
[]
=
static
const
struct
::
cppu
::
ImplementationEntry
s_component_entries
[]
=
{
{
create_MyService1Impl
,
getImplementationName_MyService1Impl
,
...
...
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