diff options
author | sr55 <[email protected]> | 2012-10-10 20:15:09 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-10-10 20:15:09 +0000 |
commit | 3bf7a95521abb4d943c978c68f57b30ee197ff43 (patch) | |
tree | 7d32c5ffa469d198b2fcf52e3e1dd1395566d5b2 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 1bbc7702f0d57f826ae359dfd519e2c1400f84da (diff) |
WinGui: Missed files from previous checkin.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5012 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
3 files changed, 1 insertions, 14 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs index 0b0c23dbf..0c35c8f41 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs @@ -68,7 +68,7 @@ namespace HandBrake.ApplicationServices.Services {
this.userSettingService = userSettingService;
this.EncodeStarted += this.EncodeEncodeStarted;
- GrowlCommunicator.Register();
+
}
#region Properties
diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibEncode.cs b/win/CS/HandBrake.ApplicationServices/Services/LibEncode.cs index eb0657cba..64d604a34 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibEncode.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibEncode.cs @@ -79,8 +79,6 @@ namespace HandBrake.ApplicationServices.Services HandBrakeUtils.MessageLogged += this.HandBrakeInstanceMessageLogged;
HandBrakeUtils.ErrorLogged += this.HandBrakeInstanceErrorLogged;
-
- GrowlCommunicator.Register();
}
/// <summary>
diff --git a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs index 29eba5172..39f31a44c 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/QueueProcessor.cs @@ -212,11 +212,6 @@ namespace HandBrake.ApplicationServices.Services this.QueueManager.ClearCompleted();
}
- // Growl
- if (userSettingService.GetUserSetting<bool>(ASUserSettingConstants.GrowlEncode))
- GrowlCommunicator.Notify("Encode Completed",
- "Put down that cocktail...\nyour Handbrake encode is done.");
-
if (!e.Successful)
{
this.QueueManager.LastProcessedJob.Status = QueueItemStatus.Error;
@@ -295,12 +290,6 @@ namespace HandBrake.ApplicationServices.Services /// </summary>
private void Finish()
{
- // Growl
- if (userSettingService.GetUserSetting<bool>(ASUserSettingConstants.GrowlQueue))
- {
- GrowlCommunicator.Notify("Queue Completed", "Put down that cocktail...\nyour Handbrake queue is done.");
- }
-
// Do something whent he encode ends.
switch (userSettingService.GetUserSetting<string>(ASUserSettingConstants.WhenCompleteAction))
{
|