diff options
Diffstat (limited to 'win/CS/frmPreview.cs')
-rw-r--r-- | win/CS/frmPreview.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win/CS/frmPreview.cs b/win/CS/frmPreview.cs index a9cf946ab..4251923f3 100644 --- a/win/CS/frmPreview.cs +++ b/win/CS/frmPreview.cs @@ -15,7 +15,6 @@ namespace Handbrake using HandBrake.ApplicationServices;
using HandBrake.ApplicationServices.Exceptions;
using HandBrake.ApplicationServices.Model;
- using HandBrake.ApplicationServices.Model.General;
using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
@@ -76,7 +75,7 @@ namespace Handbrake endPoint.SelectedIndex = 1;
startPoint.Items.Clear();
- for (int i = 1; i <= UserSettingService.GetUserSetting<int>(UserSettingConstants.PreviewScanCount); i++)
+ for (int i = 1; i <= UserSettingService.GetUserSetting<int>(ASUserSettingConstants.PreviewScanCount); i++)
{
startPoint.Items.Add(i.ToString());
}
|