Fix for bug 296040. Cell-based selection in trees

r=Neil Deakin, sr=Neil Rashbrook, sponsored by BEToptions


git-svn-id: svn://10.0.0.236/trunk@199140 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Jan.Varga%gmail.com
2006-06-06 20:05:13 +00:00
parent 03a61452b5
commit 0b8adc5a43
51 changed files with 1143 additions and 237 deletions

View File

@@ -914,6 +914,13 @@ mozSqlResult::IsEditable(PRInt32 row, nsITreeColumn* col, PRBool *_retval)
return CanUpdate(_retval);
}
NS_IMETHODIMP
mozSqlResult::IsSelectable(PRInt32 row, nsITreeColumn* col, PRBool *_retval)
{
*_retval = PR_FALSE;
return NS_OK;
}
NS_IMETHODIMP
mozSqlResult::SetCellValue(PRInt32 row, nsITreeColumn* col, const nsAString& value)
{