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
b651ed7a
Kaydet (Commit)
b651ed7a
authored
Haz 02, 2014
tarafından
Michael Stahl
Kaydeden (comit)
Valentin Kettner
Haz 03, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: fix some assertions that still use removed SwDoc methods
Change-Id: Ia33dff51cdb58030ec11ec499ee5c518fba31641
üst
abf17aef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
DocumentDeviceManager.cxx
sw/source/core/doc/DocumentDeviceManager.cxx
+1
-1
unattr.cxx
sw/source/core/undo/unattr.cxx
+2
-1
htmldrawwriter.cxx
sw/source/filter/html/htmldrawwriter.cxx
+3
-1
No files found.
sw/source/core/doc/DocumentDeviceManager.cxx
Dosyayı görüntüle @
b651ed7a
...
...
@@ -297,7 +297,7 @@ void DocumentDeviceManager::PrtDataChanged()
// If you change this, also modify InJobSetup in Sw3io if appropriate.
// #i41075#
OSL_ENSURE
(
m_rSwdoc
.
get
(
IDocumentSettingAccess
::
USE_VIRTUAL_DEVICE
)
||
OSL_ENSURE
(
m_rSwdoc
.
get
IDocumentSettingAccess
().
get
(
IDocumentSettingAccess
::
USE_VIRTUAL_DEVICE
)
||
0
!=
getPrinter
(
false
),
"PrtDataChanged will be called recursively!"
);
SwRootFrm
*
pTmpRoot
=
m_rSwdoc
.
GetCurrentLayout
();
boost
::
scoped_ptr
<
SwWait
>
pWait
;
...
...
sw/source/core/undo/unattr.cxx
Dosyayı görüntüle @
b651ed7a
...
...
@@ -552,7 +552,8 @@ bool SwUndoFmtAttr::RestoreFlyAnchor(::sw::UndoRedoContext & rContext)
if
(
pCont
->
GetAnchorFrm
()
&&
!
pObj
->
IsInserted
()
)
{
OSL_ENSURE
(
pDoc
->
GetDrawModel
(),
"RestoreFlyAnchor without DrawModel"
);
OSL_ENSURE
(
pDoc
->
getIDocumentDrawModelAccess
().
GetDrawModel
(),
"RestoreFlyAnchor without DrawModel"
);
pDoc
->
getIDocumentDrawModelAccess
().
GetDrawModel
()
->
GetPage
(
0
)
->
InsertObject
(
pObj
);
}
pObj
->
SetRelativePos
(
aDrawSavePt
);
...
...
sw/source/filter/html/htmldrawwriter.cxx
Dosyayı görüntüle @
b651ed7a
...
...
@@ -40,6 +40,7 @@
#include <rtl/strbuf.hxx>
#include <IDocumentDrawModelAccess.hxx>
#include "charatr.hxx"
#include <frmfmt.hxx>
#include <fmtanchr.hxx>
...
...
@@ -134,7 +135,8 @@ Writer& OutHTML_DrawFrmFmtAsMarquee( Writer& rWrt,
{
SwHTMLWriter
&
rHTMLWrt
=
(
SwHTMLWriter
&
)
rWrt
;
OSL_ENSURE
(
rWrt
.
pDoc
->
GetDrawModel
(),
"Da gibt's ein Draw-Obj ohne ein Draw-Model zu haben?"
);
OSL_ENSURE
(
rWrt
.
pDoc
->
getIDocumentDrawModelAccess
().
GetDrawModel
(),
"There is a Draw-Obj with no Draw-Model?"
);
const
SdrTextObj
*
pTextObj
=
(
const
SdrTextObj
*
)
&
rSdrObject
;
// Gibt es ueberhaupt auszugebenden Text
...
...
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