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
4385e822
Kaydet (Commit)
4385e822
authored
Tem 26, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: actually remove the right one
üst
b7442df1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
window.hxx
vcl/inc/vcl/window.hxx
+1
-1
window2.cxx
vcl/source/window/window2.cxx
+2
-5
No files found.
vcl/inc/vcl/window.hxx
Dosyayı görüntüle @
4385e822
...
...
@@ -427,7 +427,7 @@ public:
SAL_DLLPRIVATE
void
ImplPointToLogic
(
Font
&
rFont
)
const
;
SAL_DLLPRIVATE
void
ImplLogicToPoint
(
Font
&
rFont
)
const
;
SAL_DLLPRIVATE
Point
ImplOutputToFrame
(
const
Point
&
rPos
);
SAL_DLLPRIVATE
void
ImplFrameToOutput
(
Rectangle
&
rRect
);
SAL_DLLPRIVATE
Point
ImplFrameToOutput
(
const
Point
&
rPos
);
SAL_DLLPRIVATE
sal_Bool
ImplSysObjClip
(
const
Region
*
pOldRegion
);
SAL_DLLPRIVATE
void
ImplUpdateSysObjChildsClip
();
SAL_DLLPRIVATE
void
ImplUpdateSysObjOverlapsClip
();
...
...
vcl/source/window/window2.cxx
Dosyayı görüntüle @
4385e822
...
...
@@ -1434,12 +1434,9 @@ Point Window::ImplOutputToFrame( const Point& rPos )
return
Point
(
rPos
.
X
()
+
mnOutOffX
,
rPos
.
Y
()
+
mnOutOffY
);
}
void
Window
::
ImplFrameToOutput
(
Rectangle
&
rRect
)
Point
Window
::
ImplFrameToOutput
(
const
Point
&
rPos
)
{
rRect
.
Left
()
-=
mnOutOffX
;
rRect
.
Top
()
-=
mnOutOffY
;
rRect
.
Right
()
-=
mnOutOffX
;
rRect
.
Bottom
()
-=
mnOutOffY
;
return
Point
(
rPos
.
X
()
-
mnOutOffX
,
rPos
.
Y
()
-
mnOutOffY
);
}
void
Window
::
SetCompoundControl
(
sal_Bool
bCompound
)
...
...
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