Skip to content

Commit 105ff0c

Browse files
committed
fix build
1 parent 9d0c913 commit 105ff0c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

DataSource.DataProviders.SQLite/SQLiteDataProvider/SQLiteDataSourcePage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ public class SQLiteDataSourcePage
3232
IList _actualData;
3333
private IDataSourceSchema _schema;
3434
private int _pageIndex;
35-
private IGroupInformation[] _groupInformation;
35+
private ISectionInformation[] _groupInformation;
3636

37-
internal SQLiteDataSourcePage(SQLiteDataSourceQueryResult sourceData, IDataSourceSchema schema, IGroupInformation[] groupInformation, int pageIndex)
37+
internal SQLiteDataSourcePage(SQLiteDataSourceQueryResult sourceData, IDataSourceSchema schema, ISectionInformation[] groupInformation, int pageIndex)
3838
{
3939
if (sourceData == null)
4040
{
@@ -122,7 +122,7 @@ public IDataSourceSchema Schema()
122122
/// Information about group boundaries, if available. Not required if unchanged or not yet available.
123123
/// </summary>
124124
/// <returns>An array of information about the group boundaries, in order, if available, otherwise null.</returns>
125-
public IGroupInformation[] GetGroupInformation()
125+
public ISectionInformation[] GetGroupInformation()
126126
{
127127
return _groupInformation;
128128
}

0 commit comments

Comments
 (0)