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
23eb4435
Kaydet (Commit)
23eb4435
authored
May 23, 2014
tarafından
Chris Sherlock
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: change to true and false in Window::ImplTestMousePointerSet()
Change-Id: I5184b9bf7d080f65a702a88214906264b9d88e2f
üst
ec1d05d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
window.hxx
include/vcl/window.hxx
+1
-1
mouse.cxx
vcl/source/window/mouse.cxx
+3
-3
No files found.
include/vcl/window.hxx
Dosyayı görüntüle @
23eb4435
...
...
@@ -503,7 +503,7 @@ private:
SAL_DLLPRIVATE
bool
ImplIsRealParentPath
(
const
Window
*
pWindow
)
const
;
SAL_DLLPRIVATE
int
ImplTestMousePointerSet
();
SAL_DLLPRIVATE
bool
ImplTestMousePointerSet
();
SAL_DLLPRIVATE
void
ImplResetReallyVisible
();
SAL_DLLPRIVATE
void
ImplSetReallyVisible
();
...
...
vcl/source/window/mouse.cxx
Dosyayı görüntüle @
23eb4435
...
...
@@ -74,7 +74,7 @@ sal_uInt16 Window::ImplHitTest( const Point& rFramePos )
return
nHitTest
;
}
int
Window
::
ImplTestMousePointerSet
()
bool
Window
::
ImplTestMousePointerSet
()
{
// as soon as mouse is captured, switch mouse-pointer
if
(
IsMouseCaptured
()
)
...
...
@@ -83,9 +83,9 @@ int Window::ImplTestMousePointerSet()
// if the mouse is over the window, switch it
Rectangle
aClientRect
(
Point
(
0
,
0
),
GetOutputSizePixel
()
);
if
(
aClientRect
.
IsInside
(
GetPointerPosPixel
()
)
)
return
sal_T
rue
;
return
t
rue
;
return
sal_F
alse
;
return
f
alse
;
}
PointerStyle
Window
::
ImplGetMousePointer
()
const
...
...
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