Skip to content

Commit 6fbdf44

Browse files
committed
Correct usings to respect new PCL namespaces.
1 parent d43c6c4 commit 6fbdf44

4 files changed

Lines changed: 22 additions & 0 deletions

File tree

ODataDataProvider/ODataDataSourcePage.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
using Simple.OData.Client;
88
using System.Diagnostics;
99
using Infragistics.Controls;
10+
11+
#if !PCL
1012
using Infragistics.Controls.DataSource;
13+
#endif
14+
15+
#if PCL
16+
using Infragistics.Core.Controls.DataSource;
17+
#endif
1118

1219
#if DATA_PRESENTER
1320
namespace Reference.DataSources.OData

ODataDataProvider/ODataVirtualDataSource.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
using Simple.OData.Client;
1010
using System.Diagnostics;
1111
using System.Windows;
12+
13+
#if !PCL
1214
using Infragistics.Controls.DataSource;
15+
#endif
1316
#if PCL
1417
using Infragistics.Core.Controls.DataSource;
1518
#endif

ODataDataProvider/ODataVirtualDataSourceDataProvider.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@
88
using System.Threading.Tasks;
99
using Simple.OData.Client;
1010
using System.Diagnostics;
11+
#if !PCL
1112
using Infragistics.Controls.DataSource;
13+
#endif
14+
15+
#if PCL
16+
using Infragistics.Core.Controls.DataSource;
17+
#endif
1218

1319
#if DATA_PRESENTER
1420
namespace Reference.DataSources.OData

ODataDataProvider/ODataVirtualDataSourceDataProviderWorker.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44
using System.Collections.Generic;
55
using System.Threading.Tasks;
66
using System.Linq;
7+
#if !PCL
78
using GridODataTest;
9+
#endif
10+
811
using System.Xml;
912
using Infragistics.Controls.DataSource;
1013
using System.Text;
14+
#if PCL
15+
using Infragistics.Core.Controls.DataSource;
16+
#endif
1117

1218
#if DATA_PRESENTER
1319
namespace Reference.DataSources.OData

0 commit comments

Comments
 (0)