diff --git a/Source/AppDelegate.m b/Source/AppDelegate.m index fc8e4248..0921d4fd 100644 --- a/Source/AppDelegate.m +++ b/Source/AppDelegate.m @@ -35,7 +35,7 @@ #import "AppDelegate.h" #import "UpdateNotificationController.h" -void LTLoadLanugageModel(); +void LTLoadLanguageModel(); static NSString *kNextUpdateCheckDateKey = @"NextUpdateCheckDate"; static NSString *kUpdateInfoEndpointKey = @"UpdateInfoEndpoint"; @@ -55,7 +55,7 @@ static const NSTimeInterval kNextCheckInterval = 86400.0; - (void)applicationDidFinishLaunching:(NSNotification *)inNotification { - LTLoadLanugageModel(); + LTLoadLanguageModel(); [self checkForUpdate]; } diff --git a/Source/InputMethodController.h b/Source/InputMethodController.h index 37d77234..30c3ef08 100644 --- a/Source/InputMethodController.h +++ b/Source/InputMethodController.h @@ -61,4 +61,4 @@ @end // the shared language model object -extern "C" void LTLoadLanugageModel(); +extern "C" void LTLoadLanguageModel(); diff --git a/Source/InputMethodController.mm b/Source/InputMethodController.mm index 15427cd0..0143136e 100644 --- a/Source/InputMethodController.mm +++ b/Source/InputMethodController.mm @@ -860,7 +860,7 @@ public: @end -void LTLoadLanugageModel() +void LTLoadLanguageModel() { // load the language model; the performance of this function can be greatly improved // with better loading/parsing methods