You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.6 KiB
69 lines
2.6 KiB
From f9a4af41ca574760dbd22c8207661fabb6823e3b Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
Date: Tue, 6 Mar 2012 09:45:08 +0000
|
|
Subject: [PATCH] silence SolarMutex not locked spew
|
|
|
|
---
|
|
sw/source/core/txtnode/fntcache.cxx | 2 ++
|
|
sw/source/core/view/viewsh.cxx | 2 ++
|
|
vcl/unx/gtk/window/gtkframe.cxx | 3 +++
|
|
3 files changed, 7 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/sw/source/core/txtnode/fntcache.cxx b/sw/source/core/txtnode/fntcache.cxx
|
|
index 2ec7fb9..4ddeb3d 100644
|
|
--- a/sw/source/core/txtnode/fntcache.cxx
|
|
+++ b/sw/source/core/txtnode/fntcache.cxx
|
|
@@ -382,6 +382,8 @@ sal_uInt16 SwFntObj::GetFontLeading( const ViewShell *pSh, const OutputDevice& r
|
|
{
|
|
if ( USHRT_MAX == nGuessedLeading || USHRT_MAX == nExtLeading )
|
|
{
|
|
+ SolarMutexGuard aGuard;
|
|
+
|
|
const Font aOldFnt( rOut.GetFont() );
|
|
((OutputDevice&)rOut).SetFont( *pPrtFont );
|
|
const FontMetric aMet( rOut.GetFontMetric() );
|
|
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
|
|
index 0413382..774000c 100644
|
|
--- a/sw/source/core/view/viewsh.cxx
|
|
+++ b/sw/source/core/view/viewsh.cxx
|
|
@@ -253,6 +253,8 @@ void ViewShell::ImplEndAction( const sal_Bool bIdleEnd )
|
|
{
|
|
if ( !nLockPaint )
|
|
{
|
|
+ SolarMutexGuard aGuard;
|
|
+
|
|
sal_Bool bPaintsFromSystem = aInvalidRect.HasArea();
|
|
GetWin()->Update();
|
|
if ( aInvalidRect.HasArea() )
|
|
diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx
|
|
index 24336ce..a2e6df8 100644
|
|
--- a/vcl/unx/gtk/window/gtkframe.cxx
|
|
+++ b/vcl/unx/gtk/window/gtkframe.cxx
|
|
@@ -3835,6 +3835,7 @@ void GtkSalFrame::IMHandler::signalIMCommit( GtkIMContext* CONTEXT_ARG, gchar* p
|
|
{
|
|
GtkSalFrame::IMHandler* pThis = (GtkSalFrame::IMHandler*)im_handler;
|
|
|
|
+ SolarMutexGuard aGuard;
|
|
vcl::DeletionListener aDel( pThis->m_pFrame );
|
|
// open a block that will end the GTK_YIELD_GRAB before calling preedit changed again
|
|
{
|
|
@@ -4003,6 +4004,7 @@ void GtkSalFrame::IMHandler::signalIMPreeditChanged( GtkIMContext*, gpointer im_
|
|
|
|
GTK_YIELD_GRAB();
|
|
|
|
+ SolarMutexGuard aGuard;
|
|
vcl::DeletionListener aDel( pThis->m_pFrame );
|
|
|
|
pThis->m_pFrame->CallCallback( SALEVENT_EXTTEXTINPUT, (void*)&pThis->m_aInputEvent);
|
|
@@ -4023,6 +4025,7 @@ void GtkSalFrame::IMHandler::signalIMPreeditEnd( GtkIMContext*, gpointer im_hand
|
|
|
|
pThis->m_bPreeditJustChanged = true;
|
|
|
|
+ SolarMutexGuard aGuard;
|
|
vcl::DeletionListener aDel( pThis->m_pFrame );
|
|
pThis->doCallEndExtTextInput();
|
|
if( ! aDel.isDeleted() )
|
|
--
|
|
1.7.7.6
|
|
|