summaryrefslogtreecommitdiffstats
path: root/sfx2/source/appl/imestatuswindow.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:15:56 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:15:56 +0000
commit015abb56aeb5696d45d539ab50cf2edf554601ac (patch)
treeaadc8d83da92aa2f80bcccefe2fe3240079e18d3 /sfx2/source/appl/imestatuswindow.cxx
parentINTEGRATION: CWS warningfixes03_SRC680 (1.50.10.1.2); FILE MERGED (diff)
downloadcore-015abb56aeb5696d45d539ab50cf2edf554601ac.tar.gz
core-015abb56aeb5696d45d539ab50cf2edf554601ac.zip
INTEGRATION: CWS warningfixes03_SRC680 (1.4.86); FILE MERGED
2006/08/18 15:03:41 mhu 1.4.86.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'sfx2/source/appl/imestatuswindow.cxx')
-rw-r--r--sfx2/source/appl/imestatuswindow.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/imestatuswindow.cxx b/sfx2/source/appl/imestatuswindow.cxx
index 0efaecd8282a..1b5b986e8e1a 100644
--- a/sfx2/source/appl/imestatuswindow.cxx
+++ b/sfx2/source/appl/imestatuswindow.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: imestatuswindow.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 22:10:15 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:15:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -75,7 +75,7 @@ void ImeStatusWindow::init()
if (Application::CanToggleImeStatusWindow())
try
{
- sal_Bool bShow;
+ sal_Bool bShow = sal_Bool();
if (getConfig()->getPropertyValue(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
"ShowStatusWindow")))
@@ -94,7 +94,7 @@ bool ImeStatusWindow::isShowing()
{
try
{
- sal_Bool bShow;
+ sal_Bool bShow = sal_Bool();
if (getConfig()->getPropertyValue(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ShowStatusWindow")))
>>= bShow)