- not built -

fix function names.


git-svn-id: svn://10.0.0.236/trunk@100270 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rginda%netscape.com
2001-08-03 06:22:01 +00:00
parent 9af74e00c8
commit 7e75cd0e57
2 changed files with 4 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ function initOutliners()
console._sourceOutlinerView = new BasicOView();
console._sourceOutlinerView.setCurrentLine =
function bov_setcl (line)
function sov_setcl (line)
{
if (this.currentLine)
{
@@ -122,7 +122,7 @@ function sov_rowprops (row, properties)
console._sourceOutlinerView.getCellProperties =
function sov_cellprops (row, colID, properties)
{
if (!this.sourceArray[row])
if (!this.sourceArray || !this.sourceArray[row])
return;
if (colID == "breakpoint-col" && this.sourceArray[row].isBreakpoint)

View File

@@ -64,7 +64,7 @@ function initOutliners()
console._sourceOutlinerView = new BasicOView();
console._sourceOutlinerView.setCurrentLine =
function bov_setcl (line)
function sov_setcl (line)
{
if (this.currentLine)
{
@@ -122,7 +122,7 @@ function sov_rowprops (row, properties)
console._sourceOutlinerView.getCellProperties =
function sov_cellprops (row, colID, properties)
{
if (!this.sourceArray[row])
if (!this.sourceArray || !this.sourceArray[row])
return;
if (colID == "breakpoint-col" && this.sourceArray[row].isBreakpoint)