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
9656a154
Kaydet (Commit)
9656a154
authored
Mar 07, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: various higher debug level compile time warnings
üst
cf0373b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
pdfentries.cxx
sdext/source/pdfimport/pdfparse/pdfentries.cxx
+3
-3
pdfparse.cxx
sdext/source/pdfimport/pdfparse/pdfparse.cxx
+5
-5
No files found.
sdext/source/pdfimport/pdfparse/pdfentries.cxx
Dosyayı görüntüle @
9656a154
...
...
@@ -1423,9 +1423,9 @@ PDFFileImplData* PDFFile::impl_getData() const
PDFNumber
*
pNum
=
dynamic_cast
<
PDFNumber
*>
(
p_ent
->
second
);
if
(
pNum
)
m_pData
->
m_nPEntry
=
static_cast
<
sal_uInt32
>
(
static_cast
<
sal_Int32
>
(
pNum
->
m_fValue
));
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"p entry is %
p
\n
"
,
(
void
*
)
m_pData
->
m_nPEntry
);
#endif
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"p entry is %
"
SAL_PRIxUINT32
"
\n
"
,
m_pData
->
m_nPEntry
);
#endif
}
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"Encryption dict: sec handler: %s, version = %d, revision = %d, key length = %d
\n
"
,
...
...
sdext/source/pdfimport/pdfparse/pdfparse.cxx
Dosyayı görüntüle @
9656a154
...
...
@@ -652,20 +652,20 @@ PDFEntry* PDFReader::read( const char* pFileName )
aGrammar
,
boost
::
spirit
::
space_p
);
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"parseinfo: stop at offset = %
d, hit = %s, full = %s, length = %d
\n
"
,
fprintf
(
stderr
,
"parseinfo: stop at offset = %
ld, hit = %s, full = %s, length = %lu
\n
"
,
aInfo
.
stop
-
file_start
,
aInfo
.
hit
?
"true"
:
"false"
,
aInfo
.
full
?
"true"
:
"false"
,
(
int
)
aInfo
.
length
);
aInfo
.
length
);
#endif
}
catch
(
const
parser_error
<
const
char
*
,
file_iterator
<>
>&
rError
)
{
#if OSL_DEBUG_LEVEL > 1
fprintf
(
stderr
,
"parse error: %s at buffer pos %u
\n
object stack:
\n
"
,
fprintf
(
stderr
,
"parse error: %s at buffer pos %
l
u
\n
object stack:
\n
"
,
rError
.
descriptor
,
rError
.
where
-
file_start
);
unsigned
in
t
nElem
=
aGrammar
.
m_aObjectStack
.
size
();
for
(
unsigned
int
i
=
0
;
i
<
nElem
;
i
++
)
size_
t
nElem
=
aGrammar
.
m_aObjectStack
.
size
();
for
(
size_t
i
=
0
;
i
<
nElem
;
++
i
)
{
fprintf
(
stderr
,
" %s
\n
"
,
typeid
(
*
(
aGrammar
.
m_aObjectStack
[
i
])
).
name
()
);
}
...
...
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