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
040b8f46
Kaydet (Commit)
040b8f46
authored
Tem 31, 2011
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some cppcheck cleaning
üst
ebbcd842
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
sbxcore.hxx
basic/inc/basic/sbxcore.hxx
+6
-3
appinit.cxx
desktop/source/app/appinit.cxx
+1
-1
pagein.c
desktop/unx/source/pagein.c
+1
-0
No files found.
basic/inc/basic/sbxcore.hxx
Dosyayı görüntüle @
040b8f46
...
...
@@ -145,16 +145,19 @@ SV_DECL_REF(SbxBase)
#endif
inline
void
SbxBase
::
SetFlags
(
sal_uInt16
n
)
{
DBG_CHKTHIS
(
SbxBase
,
0
);
nFlags
=
n
;
}
{
//DBG_CHKTHIS( SbxBase, 0 );
nFlags
=
n
;
}
inline
sal_uInt16
SbxBase
::
GetFlags
()
const
{
DBG_CHKTHIS
(
SbxBase
,
0
);
return
nFlags
;
}
inline
void
SbxBase
::
SetFlag
(
sal_uInt16
n
)
{
DBG_CHKTHIS
(
SbxBase
,
0
);
nFlags
|=
n
;
}
{
//DBG_CHKTHIS( SbxBase, 0 );
nFlags
|=
n
;
}
inline
void
SbxBase
::
ResetFlag
(
sal_uInt16
n
)
{
DBG_CHKTHIS
(
SbxBase
,
0
);
nFlags
&=
~
n
;
}
{
//DBG_CHKTHIS( SbxBase, 0 );
nFlags
&=
~
n
;
}
inline
sal_Bool
SbxBase
::
IsSet
(
sal_uInt16
n
)
const
{
DBG_CHKTHIS
(
SbxBase
,
0
);
return
sal_Bool
(
(
nFlags
&
n
)
!=
0
);
}
...
...
desktop/source/app/appinit.cxx
Dosyayı görüntüle @
040b8f46
...
...
@@ -402,7 +402,7 @@ void Desktop::CreateTemporaryDirectory()
else
aMsg
=
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"The path manager is not available.
\n
"
));
e
.
Message
=
aMsg
+
e
.
Message
;
throw
e
;
throw
;
}
// remove possible old directory and base directory
...
...
desktop/unx/source/pagein.c
Dosyayı görüntüle @
040b8f46
...
...
@@ -108,6 +108,7 @@ int pagein_execute (int argc, char **argv)
if
((
argv
[
i
][
0
]
==
'@'
)
&&
((
fp
=
fopen
(
argv
[
i
],
"r"
))
==
0
))
{
char
fullpath
[
4096
];
memset
(
fullpath
,
0
,
sizeof
(
fullpath
));
char
*
path
;
strncpy
(
fullpath
,
argv
[
i
]
+
1
,
3000
);
if
(
!
(
path
=
strrchr
(
fullpath
,
'/'
)))
...
...
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