[ooo-build-commit] .: 2 commits - forms/source lingucomponent/prj
Caolán McNamara
caolan at kemper.freedesktop.org
Tue Oct 5 03:48:18 PDT 2010
forms/source/component/Button.cxx | 2 +-
forms/source/component/Button.hxx | 2 +-
lingucomponent/prj/build.lst | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit cd499611ca7ab71972d372b81d561d1f487215f4
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Oct 5 11:06:06 2010 +0100
add some configure options to control external libtextcat and libtextcat data
diff --git a/lingucomponent/prj/build.lst b/lingucomponent/prj/build.lst
index 045aaee..15ee595 100644
--- a/lingucomponent/prj/build.lst
+++ b/lingucomponent/prj/build.lst
@@ -1,4 +1,4 @@
-lc lingucomponent : linguistic libtextcat svl HYPHEN:hyphen HUNSPELL:hunspell MYTHES:mythes NULL
+lc lingucomponent : linguistic LIBTEXTCAT:libtextcat LIBTEXTCATDATA:libtextcat svl HYPHEN:hyphen HUNSPELL:hunspell MYTHES:mythes NULL
lc lingucomponent usr1 - all lc_mkout NULL
lc lingucomponent\inc nmake - all lc_inc NULL
lc lingucomponent\source\lingutil nmake - all lc_util lc_inc NULL
commit 18e69aa675aed764226eb496a34a8c0313e9c9d0
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Oct 5 10:45:06 2010 +0100
#i113654# these event handler ids need to be a ULONG
diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx
index a0c3261..a6f9e64 100644
--- a/forms/source/component/Button.cxx
+++ b/forms/source/component/Button.cxx
@@ -439,7 +439,7 @@ void SAL_CALL OButtonControl::disposing( const EventObject& _rSource ) throw( Ru
void OButtonControl::actionPerformed(const ActionEvent& /*rEvent*/) throw ( ::com::sun::star::uno::RuntimeException)
{
// Asynchron fuer starutil::URL-Button
- sal_uInt32 n = Application::PostUserEvent( LINK(this, OButtonControl,OnClick) );
+ ULONG n = Application::PostUserEvent( LINK(this, OButtonControl,OnClick) );
{
::osl::MutexGuard aGuard( m_aMutex );
m_nClickEvent = n;
diff --git a/forms/source/component/Button.hxx b/forms/source/component/Button.hxx
index b875bb3..41ed497 100644
--- a/forms/source/component/Button.hxx
+++ b/forms/source/component/Button.hxx
@@ -127,7 +127,7 @@ class OButtonControl :public OButtonControl_BASE
,public OFormNavigationHelper
{
private:
- sal_uInt32 m_nClickEvent;
+ ULONG m_nClickEvent;
sal_Int16 m_nTargetUrlFeatureId;
/// caches the value of the "Enabled" property of our model
sal_Bool m_bEnabledByPropertyValue;
More information about the ooo-build-commit
mailing list