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
f88a1b8d
Kaydet (Commit)
f88a1b8d
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: If5f4042642364424f8d7e1e13b6285503df1d381
üst
8039c648
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
pdfparse.cxx
sdext/source/pdfimport/pdfparse/pdfparse.cxx
+2
-2
PresenterPaneFactory.cxx
sdext/source/presenter/PresenterPaneFactory.cxx
+1
-1
No files found.
sdext/source/pdfimport/pdfparse/pdfparse.cxx
Dosyayı görüntüle @
f88a1b8d
...
...
@@ -57,8 +57,8 @@ class StringEmitContext : public EmitContext
}
virtual
unsigned
int
getCurPos
()
throw
()
SAL_OVERRIDE
{
return
m_aBuf
.
getLength
();
}
virtual
bool
copyOrigBytes
(
unsigned
int
nOrigOffset
,
unsigned
int
nLen
)
throw
()
SAL_OVERRIDE
{
return
(
nOrigOffset
+
nLen
<
static_cast
<
unsigned
int
>
(
m_aBuf
.
getLength
())
)
?
write
(
m_aBuf
.
getStr
()
+
nOrigOffset
,
nLen
)
:
false
;
}
{
return
(
nOrigOffset
+
nLen
<
static_cast
<
unsigned
int
>
(
m_aBuf
.
getLength
())
)
&&
write
(
m_aBuf
.
getStr
()
+
nOrigOffset
,
nLen
);
}
virtual
unsigned
int
readOrigBytes
(
unsigned
int
nOrigOffset
,
unsigned
int
nLen
,
void
*
pBuf
)
throw
()
SAL_OVERRIDE
{
if
(
nOrigOffset
+
nLen
<
static_cast
<
unsigned
int
>
(
m_aBuf
.
getLength
())
)
...
...
sdext/source/presenter/PresenterPaneFactory.cxx
Dosyayı görüntüle @
f88a1b8d
...
...
@@ -288,7 +288,7 @@ Reference<XResource> PresenterPaneFactory::CreatePane (
aArguments
[
4
]
<<=
Reference
<
drawing
::
framework
::
XPaneBorderPainter
>
(
static_cast
<
XWeak
*>
(
mpPresenterController
->
GetPaneBorderPainter
().
get
()),
UNO_QUERY
);
aArguments
[
5
]
<<=
bIsSpritePane
?
false
:
tru
e
;
aArguments
[
5
]
<<=
!
bIsSpritePan
e
;
xPane
->
initialize
(
aArguments
);
// Store pane and canvases and windows in container.
...
...
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