diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:40:46 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:40:46 +0000 |
commit | 3b7cb7390498df4534b3d3559e2604ad008439d2 (patch) | |
tree | ae37b592089ac7bd4d092776685449d263b576d2 /sfx2 | |
parent | e66e314ae35a1aee7741dd6ec0e295a21b57b0e8 (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.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx index 90c98ce7538b..4169da4bcd10 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" ); + } } //-------------------------------------------------------------------- |