openAll method

void openAll(
  1. ClipFunc src
)

Implementation

void openAll( ClipFunc src ){
	ClipFuncData? srcFunc;
	ClipFuncData dstFunc;

	// 全ユーザー定義関数を削除する
	delAll();

	srcFunc = src._top;
	while( srcFunc != null ){
		dstFunc = _add( false );

		dstFunc._info   = srcFunc._info;
		dstFunc._label  = srcFunc._label;
		dstFunc._line   = srcFunc._line;
		dstFunc._topNum = srcFunc._topNum;

		srcFunc = srcFunc._next;
	}

	_num = src._num;
	_max = src._max;
}