summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-04-15 14:46:15 -0400
committerPeter Foley <pefoley2@verizon.net>2013-04-15 14:47:43 -0400
commita81f161b120de283cf9c5532223a022dbcbeaab7 (patch)
treef67e84578c67e535a8aafea5708047e23d50d39d /linguistic
parent0b2eae62f1ccaad1c963d2637aafaa1ce9062455 (diff)
add desktop libs to libmerged
Change-Id: I0e5477f84de316598015330cea995e42f1249acb
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/gciterator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx
index 84c03347a188..41214d6f2dfa 100644
--- a/linguistic/source/gciterator.cxx
+++ b/linguistic/source/gciterator.cxx
@@ -219,7 +219,7 @@ static sal_Int32 lcl_BacktraceWhiteSpaces( const OUString &rText, sal_Int32 nSta
}
-extern "C" void workerfunc (void * gci)
+extern "C" void lcl_workerfunc (void * gci)
{
((GrammarCheckingIterator*)gci)->DequeueAndCheck();
}
@@ -243,7 +243,7 @@ GrammarCheckingIterator::GrammarCheckingIterator( const uno::Reference< lang::XM
m_aEventListeners( MyMutex::get() ),
m_aNotifyListeners( MyMutex::get() )
{
- m_thread = osl_createThread( workerfunc, this );
+ m_thread = osl_createThread( lcl_workerfunc, this );
}