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
bc9c7e42
Kaydet (Commit)
bc9c7e42
authored
Tem 19, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix debug=t build
Change-Id: Ibc81d1677e9eb297797c7fa9e7c77c9437f65b15
üst
c3beba87
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
swrect.hxx
sw/inc/swrect.hxx
+4
-0
swrect.cxx
sw/source/core/bastyp/swrect.cxx
+12
-0
txtio.cxx
sw/source/core/text/txtio.cxx
+0
-0
No files found.
sw/inc/swrect.hxx
Dosyayı görüntüle @
bc9c7e42
...
@@ -101,6 +101,10 @@ public:
...
@@ -101,6 +101,10 @@ public:
//SV-SS e.g. pWin->DrawRect( aSwRect.SVRect() );
//SV-SS e.g. pWin->DrawRect( aSwRect.SVRect() );
inline
Rectangle
SVRect
()
const
;
inline
Rectangle
SVRect
()
const
;
// Output operator for debugging.
friend
SvStream
&
WriteSwRect
(
SvStream
&
rStream
,
const
SwRect
&
rRect
);
void
_Top
(
const
long
nTop
);
void
_Top
(
const
long
nTop
);
void
_Bottom
(
const
long
nBottom
);
void
_Bottom
(
const
long
nBottom
);
void
_Left
(
const
long
nLeft
);
void
_Left
(
const
long
nLeft
);
...
...
sw/source/core/bastyp/swrect.cxx
Dosyayı görüntüle @
bc9c7e42
...
@@ -223,4 +223,16 @@ void SwRect::SetUpperRightCorner( const Point& rNew )
...
@@ -223,4 +223,16 @@ void SwRect::SetUpperRightCorner( const Point& rNew )
void
SwRect
::
SetLowerLeftCorner
(
const
Point
&
rNew
)
void
SwRect
::
SetLowerLeftCorner
(
const
Point
&
rNew
)
{
m_Point
=
Point
(
rNew
.
A
(),
rNew
.
B
()
-
m_Size
.
getHeight
());
}
{
m_Point
=
Point
(
rNew
.
A
(),
rNew
.
B
()
-
m_Size
.
getHeight
());
}
#ifdef DBG_UTIL
SvStream
&
WriteSwRect
(
SvStream
&
rStream
,
const
SwRect
&
rRect
)
{
rStream
.
WriteChar
(
'['
).
WriteInt32
(
rRect
.
Top
()).
WriteChar
(
'/'
).
WriteInt32
(
rRect
.
Left
()).
WriteChar
(
','
).
WriteInt32
(
rRect
.
Width
()).
WriteChar
(
'x'
).
WriteInt32
(
rRect
.
Height
()).
WriteCharPtr
(
"] "
);
return
rStream
;
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sw/source/core/text/txtio.cxx
Dosyayı görüntüle @
bc9c7e42
This diff is collapsed.
Click to expand it.
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