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
554be83e
Kaydet (Commit)
554be83e
authored
Mar 24, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
correct debugging assertions.
Change-Id: I2437b4d3c532be6cbb31dccfa9e267498111c183
üst
9d35e6df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
DocumentDeviceManager.cxx
sw/source/core/doc/DocumentDeviceManager.cxx
+3
-3
No files found.
sw/source/core/doc/DocumentDeviceManager.cxx
Dosyayı görüntüle @
554be83e
...
@@ -65,7 +65,7 @@ SfxPrinter* DocumentDeviceManager::getPrinter(/*[in]*/ bool bCreate ) const
...
@@ -65,7 +65,7 @@ SfxPrinter* DocumentDeviceManager::getPrinter(/*[in]*/ bool bCreate ) const
void
DocumentDeviceManager
::
setPrinter
(
/*[in]*/
SfxPrinter
*
pP
,
/*[in]*/
bool
bDeleteOld
,
/*[in]*/
bool
bCallPrtDataChanged
)
void
DocumentDeviceManager
::
setPrinter
(
/*[in]*/
SfxPrinter
*
pP
,
/*[in]*/
bool
bDeleteOld
,
/*[in]*/
bool
bCallPrtDataChanged
)
{
{
assert
(
!
pP
->
isDisposed
()
);
assert
(
!
!
pP
&&
!
pP
->
isDisposed
()
);
if
(
pP
!=
mpPrt
)
if
(
pP
!=
mpPrt
)
{
{
if
(
bDeleteOld
)
if
(
bDeleteOld
)
...
@@ -101,7 +101,7 @@ VirtualDevice* DocumentDeviceManager::getVirtualDevice(/*[in]*/ bool bCreate ) c
...
@@ -101,7 +101,7 @@ VirtualDevice* DocumentDeviceManager::getVirtualDevice(/*[in]*/ bool bCreate ) c
else
else
pRet
=
&
CreateVirtualDevice_
();
pRet
=
&
CreateVirtualDevice_
();
assert
(
!
pRet
->
isDisposed
()
);
assert
(
!
pRet
||
!
pRet
->
isDisposed
()
);
return
pRet
;
return
pRet
;
}
}
...
@@ -138,7 +138,7 @@ OutputDevice* DocumentDeviceManager::getReferenceDevice(/*[in]*/ bool bCreate )
...
@@ -138,7 +138,7 @@ OutputDevice* DocumentDeviceManager::getReferenceDevice(/*[in]*/ bool bCreate )
pRet
=
getVirtualDevice
(
bCreate
);
pRet
=
getVirtualDevice
(
bCreate
);
}
}
assert
(
!
pRet
->
isDisposed
()
);
assert
(
!
pRet
||
!
pRet
->
isDisposed
()
);
return
pRet
;
return
pRet
;
}
}
...
...
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