From 5a494d18e3aa07d7ddbd1572d98d1b0145e1aa9c Mon Sep 17 00:00:00 2001 From: cskim Date: Wed, 15 Mar 2017 19:46:29 +0900 Subject: [PATCH] Fix typo error Change-Id: Ic1834bc79837b9a90b427b911e44dd2d6c6d6e0e --- .../DataModels/AppControlAction.cs | 4 ++-- .../DataModels/AppShortcutInfo.cs | 2 +- .../DataModels/BTLaunchAction.cs | 4 ++-- .../DataModels/BTOffAction.cs | 2 +- .../DataModels/BTOnAction.cs | 2 +- .../DataModels/BTSettingShortcutInfo.cs | 2 +- .../DataModels/CommandAction.cs | 2 +- LibTVRefCommonPortable/DataModels/DBItem.cs | 2 +- .../DataModels/FileSystemEventCustomArgs.cs | 2 +- .../DataModels/HomeMenuAppShortcutInfo.cs | 2 +- LibTVRefCommonPortable/DataModels/IAction.cs | 2 +- LibTVRefCommonPortable/DataModels/IDBItem.cs | 2 +- .../DataModels/MediaControlAction.cs | 2 +- .../DataModels/RecentShortcutInfo.cs | 2 +- .../DataModels/ShortcutInfo.cs | 4 ++-- .../DataModels/StateDescription.cs | 2 +- .../DataModels/WatcherType.cs | 2 +- .../DataModels/WiFiLaunchAction.cs | 4 ++-- .../DataModels/WiFiOffAction.cs | 2 +- .../DataModels/WiFiOnAction.cs | 2 +- .../DataModels/WiFiSettingShortcutInfo.cs | 2 +- .../LibTVRefCommonPortable.csproj | 10 +++++----- .../Models/AppShortcutController.cs | 7 +++---- .../Models/RecentShortcutController.cs | 6 +++--- .../Models/SettingShortcutController.cs | 4 ++-- .../Models/SettingShortcutFactory.cs | 4 ++-- .../Utils/AppControlUtils.cs | 2 +- .../Utils/AppShortcutStorage.cs | 6 +++--- .../Utils/DebuggingUtils.cs | 2 +- LibTVRefCommonPortable/Utils/IAppControl.cs | 2 +- .../Utils/IApplicationManagerAPIs.cs | 2 +- LibTVRefCommonPortable/Utils/IBTAPIs.cs | 2 +- LibTVRefCommonPortable/Utils/IDBAPIs.cs | 4 ++-- .../Utils/IDebuggingAPIs.cs | 2 +- .../Utils/IFileSystemAPIs.cs | 2 +- .../Utils/IFileSystemWatcherAPIs.cs | 4 ++-- .../Utils/IPackageManager.cs | 2 +- LibTVRefCommonPortable/Utils/ITVHome.cs | 4 ++-- LibTVRefCommonPortable/Utils/IWifiAPIs.cs | 2 +- .../Utils/PackageManagerUtils.cs | 4 ++-- .../Utils/RecentShortcutStorage.cs | 4 ++-- LibTVRefCommonPortable/Utils/TVHomeImpl.cs | 4 ++-- LibTVRefCommonPortable/packages.config | 2 +- LibTVRefCommonTizen/Ports/AppControlPort.cs | 2 +- .../Ports/ApplicationManagerPort.cs | 2 +- LibTVRefCommonTizen/Ports/BTModulePort.cs | 2 +- LibTVRefCommonTizen/Ports/DBPort.cs | 4 ++-- LibTVRefCommonTizen/Ports/DebuggingPort.cs | 2 +- LibTVRefCommonTizen/Ports/FileSystemPort.cs | 2 +- .../Ports/FileSystemWatcherPort.cs | 4 ++-- .../Ports/PackageManagerPort.cs | 7 ------- LibTVRefCommonTizen/Ports/WifiModulePort.cs | 2 +- TVApps/TVApps/Controls/AppItemCell.xaml.cs | 4 ++-- TVApps/TVApps/Controls/AppListView.xaml.cs | 4 ++-- TVApps/TVApps/TVApps.cs | 1 - TVApps/TVApps/ViewModels/AppsHolder.cs | 3 +-- TVApps/TVApps/ViewModels/AppsListSorter.cs | 4 ++-- TVApps/TVApps/ViewModels/MainPageViewModel.cs | 4 ++-- TVApps/TVApps/Views/MainPage.xaml.cs | 2 +- .../bin/Debug/TVHome.TizenTV.tpk | Bin 1581753 -> 1585243 bytes .../TVHome/Controls/MainPanelButton.xaml.cs | 2 +- .../Controls/SubPanelAllAppsButton.xaml.cs | 2 +- TVHome/TVHome/Controls/SubPanelButton.xaml.cs | 2 +- .../Controls/SubPanelReservedButton.xaml.cs | 2 +- TVHome/TVHome/TVHome.cs | 3 +-- TVHome/TVHome/ViewModels/MainPageViewModel.cs | 4 ++-- TVHome/TVHome/Views/MainPage.xaml.cs | 6 +++--- TVHome/TVHome/Views/MainPanel.xaml.cs | 4 ++-- TVHome/TVHome/Views/Panel.cs | 2 +- TVHome/TVHome/Views/SubPanel.xaml.cs | 4 ++-- TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs | 4 ++-- 71 files changed, 102 insertions(+), 113 deletions(-) diff --git a/LibTVRefCommonPortable/DataModels/AppControlAction.cs b/LibTVRefCommonPortable/DataModels/AppControlAction.cs index 64762ed..6bff0dd 100644 --- a/LibTVRefCommonPortable/DataModels/AppControlAction.cs +++ b/LibTVRefCommonPortable/DataModels/AppControlAction.cs @@ -15,9 +15,9 @@ */ using System; -using LibTVRefCommmonPortable.Utils; +using LibTVRefCommonPortable.Utils; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class AppControlAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/AppShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/AppShortcutInfo.cs index a0dc7a1..ac10c50 100644 --- a/LibTVRefCommonPortable/DataModels/AppShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/AppShortcutInfo.cs @@ -19,7 +19,7 @@ using System.Collections.Generic; using System.Xml.Serialization; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class AppShortcutInfo : ShortcutInfo { diff --git a/LibTVRefCommonPortable/DataModels/BTLaunchAction.cs b/LibTVRefCommonPortable/DataModels/BTLaunchAction.cs index 7329fd9..b49b73f 100644 --- a/LibTVRefCommonPortable/DataModels/BTLaunchAction.cs +++ b/LibTVRefCommonPortable/DataModels/BTLaunchAction.cs @@ -15,10 +15,10 @@ */ using System; -using LibTVRefCommmonPortable.Utils; +using LibTVRefCommonPortable.Utils; using Xamarin.Forms; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class BTLaunchAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/BTOffAction.cs b/LibTVRefCommonPortable/DataModels/BTOffAction.cs index ef3c929..589fea0 100644 --- a/LibTVRefCommonPortable/DataModels/BTOffAction.cs +++ b/LibTVRefCommonPortable/DataModels/BTOffAction.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class BTOffAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/BTOnAction.cs b/LibTVRefCommonPortable/DataModels/BTOnAction.cs index 4468d58..628f158 100644 --- a/LibTVRefCommonPortable/DataModels/BTOnAction.cs +++ b/LibTVRefCommonPortable/DataModels/BTOnAction.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class BTOnAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/BTSettingShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/BTSettingShortcutInfo.cs index 2e411d6..db3938e 100644 --- a/LibTVRefCommonPortable/DataModels/BTSettingShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/BTSettingShortcutInfo.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class BTSettingShortcutInfo : ShortcutInfo { diff --git a/LibTVRefCommonPortable/DataModels/CommandAction.cs b/LibTVRefCommonPortable/DataModels/CommandAction.cs index a46e12a..6209f2c 100644 --- a/LibTVRefCommonPortable/DataModels/CommandAction.cs +++ b/LibTVRefCommonPortable/DataModels/CommandAction.cs @@ -14,7 +14,7 @@ * limitations under the License. */ -using LibTVRefCommmonPortable.DataModels; +using LibTVRefCommonPortable.DataModels; using System.Windows.Input; namespace LibTVRefCommonPortable.DataModels diff --git a/LibTVRefCommonPortable/DataModels/DBItem.cs b/LibTVRefCommonPortable/DataModels/DBItem.cs index d5a92a9..4f48700 100644 --- a/LibTVRefCommonPortable/DataModels/DBItem.cs +++ b/LibTVRefCommonPortable/DataModels/DBItem.cs @@ -20,7 +20,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class DBItem : IDBItem { diff --git a/LibTVRefCommonPortable/DataModels/FileSystemEventCustomArgs.cs b/LibTVRefCommonPortable/DataModels/FileSystemEventCustomArgs.cs index 65098f7..d6c159f 100644 --- a/LibTVRefCommonPortable/DataModels/FileSystemEventCustomArgs.cs +++ b/LibTVRefCommonPortable/DataModels/FileSystemEventCustomArgs.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class FileSystemEventCustomArgs : EventArgs { diff --git a/LibTVRefCommonPortable/DataModels/HomeMenuAppShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/HomeMenuAppShortcutInfo.cs index a280ae9..79222ed 100644 --- a/LibTVRefCommonPortable/DataModels/HomeMenuAppShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/HomeMenuAppShortcutInfo.cs @@ -20,7 +20,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class HomeMenuAppShortcutInfo : ShortcutInfo { diff --git a/LibTVRefCommonPortable/DataModels/IAction.cs b/LibTVRefCommonPortable/DataModels/IAction.cs index a13bd1c..b6a37fc 100644 --- a/LibTVRefCommonPortable/DataModels/IAction.cs +++ b/LibTVRefCommonPortable/DataModels/IAction.cs @@ -14,7 +14,7 @@ * limitations under the License. */ -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public interface IAction { diff --git a/LibTVRefCommonPortable/DataModels/IDBItem.cs b/LibTVRefCommonPortable/DataModels/IDBItem.cs index 013a1a7..92770f2 100644 --- a/LibTVRefCommonPortable/DataModels/IDBItem.cs +++ b/LibTVRefCommonPortable/DataModels/IDBItem.cs @@ -16,7 +16,7 @@ using System.Collections.Generic; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public interface IDBItem { diff --git a/LibTVRefCommonPortable/DataModels/MediaControlAction.cs b/LibTVRefCommonPortable/DataModels/MediaControlAction.cs index 1639965..48eefad 100644 --- a/LibTVRefCommonPortable/DataModels/MediaControlAction.cs +++ b/LibTVRefCommonPortable/DataModels/MediaControlAction.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class MediaControlAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/RecentShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/RecentShortcutInfo.cs index 7ab5096..07e24db 100644 --- a/LibTVRefCommonPortable/DataModels/RecentShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/RecentShortcutInfo.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class RecentShortcutInfo : ShortcutInfo { diff --git a/LibTVRefCommonPortable/DataModels/ShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/ShortcutInfo.cs index cfb1b11..7bd2ab6 100644 --- a/LibTVRefCommonPortable/DataModels/ShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/ShortcutInfo.cs @@ -18,9 +18,9 @@ using System; using System.Collections.Generic; using System.ComponentModel; using System.Xml.Serialization; -using LibTVRefCommmonPortable.Utils; +using LibTVRefCommonPortable.Utils; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public abstract class ShortcutInfo : INotifyPropertyChanged { diff --git a/LibTVRefCommonPortable/DataModels/StateDescription.cs b/LibTVRefCommonPortable/DataModels/StateDescription.cs index 0ffc05c..89244f2 100644 --- a/LibTVRefCommonPortable/DataModels/StateDescription.cs +++ b/LibTVRefCommonPortable/DataModels/StateDescription.cs @@ -14,7 +14,7 @@ * limitations under the License. */ -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class StateDescription { diff --git a/LibTVRefCommonPortable/DataModels/WatcherType.cs b/LibTVRefCommonPortable/DataModels/WatcherType.cs index 22171df..05d5c65 100644 --- a/LibTVRefCommonPortable/DataModels/WatcherType.cs +++ b/LibTVRefCommonPortable/DataModels/WatcherType.cs @@ -1,4 +1,4 @@ -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public enum WatcherType { diff --git a/LibTVRefCommonPortable/DataModels/WiFiLaunchAction.cs b/LibTVRefCommonPortable/DataModels/WiFiLaunchAction.cs index e598e21..956c564 100644 --- a/LibTVRefCommonPortable/DataModels/WiFiLaunchAction.cs +++ b/LibTVRefCommonPortable/DataModels/WiFiLaunchAction.cs @@ -15,10 +15,10 @@ */ using System; -using LibTVRefCommmonPortable.Utils; +using LibTVRefCommonPortable.Utils; using Xamarin.Forms; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class WiFiLaunchAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/WiFiOffAction.cs b/LibTVRefCommonPortable/DataModels/WiFiOffAction.cs index e6566d9..9ece2e2 100644 --- a/LibTVRefCommonPortable/DataModels/WiFiOffAction.cs +++ b/LibTVRefCommonPortable/DataModels/WiFiOffAction.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class WiFiOffAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/WiFiOnAction.cs b/LibTVRefCommonPortable/DataModels/WiFiOnAction.cs index 0a4b296..9576414 100644 --- a/LibTVRefCommonPortable/DataModels/WiFiOnAction.cs +++ b/LibTVRefCommonPortable/DataModels/WiFiOnAction.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { class WiFiOnAction : IAction { diff --git a/LibTVRefCommonPortable/DataModels/WiFiSettingShortcutInfo.cs b/LibTVRefCommonPortable/DataModels/WiFiSettingShortcutInfo.cs index 3a49cf7..5fbe679 100644 --- a/LibTVRefCommonPortable/DataModels/WiFiSettingShortcutInfo.cs +++ b/LibTVRefCommonPortable/DataModels/WiFiSettingShortcutInfo.cs @@ -16,7 +16,7 @@ using System; -namespace LibTVRefCommmonPortable.DataModels +namespace LibTVRefCommonPortable.DataModels { public class WiFiSettingShortcutInfo : ShortcutInfo { diff --git a/LibTVRefCommonPortable/LibTVRefCommonPortable.csproj b/LibTVRefCommonPortable/LibTVRefCommonPortable.csproj index 05c8a62..160070e 100644 --- a/LibTVRefCommonPortable/LibTVRefCommonPortable.csproj +++ b/LibTVRefCommonPortable/LibTVRefCommonPortable.csproj @@ -83,15 +83,15 @@ - ..\packages\Xamarin.Forms.2.2.0.45\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll + ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll True - ..\packages\Xamarin.Forms.2.2.0.45\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll + ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll True - ..\packages\Xamarin.Forms.2.2.0.45\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll + ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll True @@ -99,12 +99,12 @@ - + 이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. 해당 패키지를 다운로드하려면 NuGet 패키지 복원을 사용하십시오. 자세한 내용은 http://go.microsoft.com/fwlink/?LinkID=322105를 참조하십시오. 누락된 파일은 {0}입니다. - +