summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorChristof Pintaske <cp@openoffice.org>2002-09-24 13:33:30 +0000
committerChristof Pintaske <cp@openoffice.org>2002-09-24 13:33:30 +0000
commit9f7e52d1961b2d89d3afd5e53f101fe626f405cf (patch)
treee61df15b88517c78a538ca2a44cc942cd625c038 /vcl/unx
parent7e3fb6546cdeb19d63dc35b5368e133732cb322b (diff)
#102118# be more robust on shutting down the ic
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/source/window/salframe.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/unx/source/window/salframe.cxx b/vcl/unx/source/window/salframe.cxx
index 9dbe1f402d12..5c833e5bcc80 100644
--- a/vcl/unx/source/window/salframe.cxx
+++ b/vcl/unx/source/window/salframe.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: salframe.cxx,v $
*
- * $Revision: 1.143 $
+ * $Revision: 1.144 $
*
- * last change: $Author: pl $ $Date: 2002-09-18 16:28:31 $
+ * last change: $Author: cp $ $Date: 2002-09-24 14:33:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1996,7 +1996,8 @@ void SalFrame::SetInputContext( SalInputContext* pContext )
void SalFrame::EndExtTextInput( USHORT nFlags )
{
- maFrameData.mpInputContext->EndExtTextInput( nFlags );
+ if (maFrameData.mpInputContext != NULL)
+ maFrameData.mpInputContext->EndExtTextInput( nFlags );
}
// -----------------------------------------------------------------------