diff options
author | Andreas Bregas <ab@openoffice.org> | 2002-04-23 06:23:26 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2002-04-23 06:23:26 +0000 |
commit | 1283883e6e8c96feea19156c973bd8c02f27641f (patch) | |
tree | 11ef1fa8bd65c7c970b7ba16dbbe274772a62882 | |
parent | ce56a72e243937a8b3515931bef7183bb3f60224 (diff) |
#97157# Removed nested use of ProgressInfo ctor
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 19dec9a816ad..f94ae0f849ed 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -2,9 +2,9 @@ * * $RCSfile: baside2b.cxx,v $ * - * $Revision: 1.19 $ + * $Revision: 1.20 $ * - * last change: $Author: tbe $ $Date: 2002-04-17 08:47:27 $ + * last change: $Author: ab $ $Date: 2002-04-23 07:23:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1041,7 +1041,7 @@ void EditorWindow::ToggleHighlightMode() void EditorWindow::CreateProgress( const String& rText, ULONG nRange ) { DBG_ASSERT( !pProgress, "ProgressInfo existiert schon" ); - pProgress = new ProgressInfo( ProgressInfo( IDE_DLL()->GetShell()->GetViewFrame()->GetObjectShell(), rText, nRange ) ); + pProgress = new ProgressInfo( IDE_DLL()->GetShell()->GetViewFrame()->GetObjectShell(), rText, nRange ); } void EditorWindow::DestroyProgress() |