Skip to content

Commit 510cd53

Browse files
authored
Merge pull request #90 from redth-org/bugfix/namespace
Fix Namespace change in #84
2 parents c4f7cb0 + e59e5e0 commit 510cd53

File tree

12 files changed

+44
-44
lines changed

12 files changed

+44
-44
lines changed

BTProgressHUD/BTProgressHUD.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using UIKit;
33

4-
namespace BTProgressHUD
4+
namespace BigTed
55
{
66
public static class BTProgressHUD
77
{

BTProgressHUD/BTProgressHUD.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="MSBuild.Sdk.Extras">
22
<PropertyGroup>
3-
<TargetFrameworks>xamarin.ios10</TargetFrameworks>
3+
<TargetFramework>xamarin.ios10</TargetFramework>
44
<AssemblyName>BTProgressHUD</AssemblyName>
5-
<RootNamespace>BTProgressHUD</RootNamespace>
5+
<RootNamespace>BigTed</RootNamespace>
66
<PackageId>BTProgressHUD</PackageId>
7-
<Description>SVProgressHUD (and BTProgressHUD) is a clean and easy-to-use HUD meant to display the progress of an ongoing task.</Description>
7+
<Description>BTProgressHUD is a clean and easy-to-use HUD meant to display the progress of an ongoing task.</Description>
88
</PropertyGroup>
99

1010
<ItemGroup>

BTProgressHUD/Enums/ImageStyle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BTProgressHUD
1+
namespace BigTed
22
{
33
public enum ImageStyle
44
{

BTProgressHUD/Enums/MaskType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BTProgressHUD
1+
namespace BigTed
22
{
33
public enum MaskType
44
{

BTProgressHUD/Enums/ToastPosition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BTProgressHUD
1+
namespace BigTed
22
{
33
public enum ToastPosition
44
{

BTProgressHUD/Helpers/ImageHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Foundation;
33
using UIKit;
44

5-
namespace BTProgressHUD
5+
namespace BigTed
66
{
77
public static class ImageHelper
88
{

BTProgressHUD/Helpers/ShapeHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using CoreGraphics;
44
using UIKit;
55

6-
namespace BTProgressHUD
6+
namespace BigTed
77
{
88
public static class ShapeHelper
99
{

BTProgressHUD/ProgressHUD.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using ObjCRuntime;
2424
using UIKit;
2525

26-
namespace BTProgressHUD
26+
namespace BigTed
2727
{
2828
public class ProgressHUD : UIView
2929
{

BTProgressHUD/Ring.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using UIKit;
33

4-
namespace BTProgressHUD
4+
namespace BigTed
55
{
66
public class Ring
77
{

samples/BTProgressHUDSample/BTProgressHUDSample/AppDelegate.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading.Tasks;
1+
using System.Threading.Tasks;
2+
using BigTed;
53
using Foundation;
64
using UIKit;
75

@@ -40,11 +38,11 @@ public override bool FinishedLaunching (UIApplication app, NSDictionary options)
4038
// make the window visible
4139
window.MakeKeyAndVisible ();
4240

43-
BTProgressHUD.BTProgressHUD.Show("Cancel", () => { }, "Startup");
41+
BTProgressHUD.Show("Cancel", () => { }, "Startup");
4442
Task.Run(async () =>
4543
{
4644
await Task.Delay(2000);
47-
BTProgressHUD.BTProgressHUD.Dismiss();
45+
BTProgressHUD.Dismiss();
4846
});
4947

5048
return true;

0 commit comments

Comments
 (0)