// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== //----------------------------------------------------------------------- // // Creation Date: January 16, 2003 // // Procedure Name: // cleanUp_EndProgress // // Description: // // Utility function used by the various components of the // "Optimize Scene Size" function (otherwise known as scene cleanup). // // This function is called during a cleanup operation to indicate // that the current operation has terminated. This will clear // the progress bar. // // Input Arguments: None // Return Value: None // // Related Functions: // // cleanUp_StartProgress() - called before an operation begins // cleanUp_SetProgress() - called as the operation is running, to // update the progress bar. // cleanUp_EndProgress() - called to signal that the operation is // finished. // cleanUp_CheckInterrupt() - called between cleanup operations to // detect when a previous operation has // been interrupted. // cleanUp_Summary() - called to report the results of cleanup // operations. // //----------------------------------------------------------------------- global proc cleanUp_EndProgress() { global string $gMainProgressBar; progressBar -e -endProgress $gMainProgressBar; }