Changed query in nsNavHistoryResultNode::Rebuild() to be a full query bound

by id instead of URL.
Changed QueriesToQueryString() and QueryStringToQueries() to make the query
string a place: url.
r=bryner bug=319894

Original committer: annie.sullivan%gmail.com
Original revision: 1.17
Original date: 2005/12/11 21:53:00
This commit is contained in:
benjamin%smedbergs.us 2006-07-18 18:13:47 +00:00
Родитель d3255db736
Коммит 264ed3d997
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -342,7 +342,7 @@ nsNavHistoryResultNode::Rebuild()
}
nsNavHistory *history = nsNavHistory::GetHistoryService();
mozIStorageStatement *statement = history->DBGetURLPageInfo();
mozIStorageStatement *statement = history->DBGetIdPageInfoFull();
mozStorageStatementScoper scope(statement);
nsresult rv = statement->BindInt64Parameter(0, mID);