summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:40:46 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 14:40:46 +0000
commit3d3f23e7a03901a998385c987fc76a463809e3f9 (patch)
tree62006214b22871bc4155557206c41ff30dd73bbf /sfx2
parent7a012966e738d3484eb2e785e10ae0ccb83cb8db (diff)
INTEGRATION: CWS hr50 (1.73.90); FILE MERGED
2008/04/10 16:58:44 hr 1.73.90.1: #i86574#: fix warning (gcc-4.2.3)
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/workwin.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx
index 6e16a23547..31e1f20a85 100644
--- a/sfx2/source/appl/workwin.cxx
+++ b/sfx2/source/appl/workwin.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: workwin.cxx,v $
- * $Revision: 1.74 $
+ * $Revision: 1.75 $
*
* This file is part of OpenOffice.org.
*
@@ -1085,8 +1085,9 @@ void SfxWorkWindow::AlignChild_Impl( Window& rWindow,
pChild->aSize = rNewSize;
pChild->bResize = TRUE;
}
- else
+ else {
DBG_ERROR( "aligning unregistered child" );
+ }
}
//--------------------------------------------------------------------
@@ -1113,8 +1114,9 @@ void SfxWorkWindow::ReleaseChild_Impl( Window& rWindow )
pChilds->Remove(nPos);
delete pChild;
}
- else
+ else {
DBG_ERROR( "releasing unregistered child" );
+ }
}
//--------------------------------------------------------------------