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
f04ec99f
Kaydet (Commit)
f04ec99f
authored
Ara 13, 2016
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#104573 - Assertion failed: SolarMutex not locked
Change-Id: Ie46f0e2b60b99aea1c322c7891a41a2e7603c9e9
üst
ede1a83e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
event.hxx
include/vcl/event.hxx
+1
-0
event.cxx
vcl/source/window/event.cxx
+6
-0
mouse.cxx
vcl/source/window/mouse.cxx
+3
-0
No files found.
include/vcl/event.hxx
Dosyayı görüntüle @
f04ec99f
...
@@ -317,6 +317,7 @@ public:
...
@@ -317,6 +317,7 @@ public:
NotifyEvent
(
MouseNotifyEvent
nEventType
,
NotifyEvent
(
MouseNotifyEvent
nEventType
,
vcl
::
Window
*
pWindow
,
vcl
::
Window
*
pWindow
,
const
void
*
pEvent
=
nullptr
);
const
void
*
pEvent
=
nullptr
);
~
NotifyEvent
();
MouseNotifyEvent
GetType
()
const
{
return
mnEventType
;
}
MouseNotifyEvent
GetType
()
const
{
return
mnEventType
;
}
vcl
::
Window
*
GetWindow
()
const
{
return
mpWindow
;
}
vcl
::
Window
*
GetWindow
()
const
{
return
mpWindow
;
}
...
...
vcl/source/window/event.cxx
Dosyayı görüntüle @
f04ec99f
...
@@ -658,4 +658,10 @@ NotifyEvent::NotifyEvent( MouseNotifyEvent nEventType, vcl::Window* pWindow,
...
@@ -658,4 +658,10 @@ NotifyEvent::NotifyEvent( MouseNotifyEvent nEventType, vcl::Window* pWindow,
mnEventType
=
nEventType
;
mnEventType
=
nEventType
;
}
}
NotifyEvent
::~
NotifyEvent
()
{
SolarMutexGuard
aVclGuard
;
mpWindow
.
clear
();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
vcl/source/window/mouse.cxx
Dosyayı görüntüle @
f04ec99f
...
@@ -161,7 +161,10 @@ void Window::ImplCallMouseMove( sal_uInt16 nMouseCode, bool bModChanged )
...
@@ -161,7 +161,10 @@ void Window::ImplCallMouseMove( sal_uInt16 nMouseCode, bool bModChanged )
void
Window
::
ImplGenerateMouseMove
()
void
Window
::
ImplGenerateMouseMove
()
{
{
if
(
!
mpWindowImpl
->
mpFrameData
->
mnMouseMoveId
)
if
(
!
mpWindowImpl
->
mpFrameData
->
mnMouseMoveId
)
{
SolarMutexGuard
aVclGuard
;
mpWindowImpl
->
mpFrameData
->
mnMouseMoveId
=
Application
::
PostUserEvent
(
LINK
(
mpWindowImpl
->
mpFrameWindow
,
Window
,
ImplGenerateMouseMoveHdl
),
nullptr
,
true
);
mpWindowImpl
->
mpFrameData
->
mnMouseMoveId
=
Application
::
PostUserEvent
(
LINK
(
mpWindowImpl
->
mpFrameWindow
,
Window
,
ImplGenerateMouseMoveHdl
),
nullptr
,
true
);
}
}
}
IMPL_LINK_NOARG
(
Window
,
ImplGenerateMouseMoveHdl
,
void
*
,
void
)
IMPL_LINK_NOARG
(
Window
,
ImplGenerateMouseMoveHdl
,
void
*
,
void
)
...
...
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