- 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:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user