Changed init function name
diff --git a/include/FTLibrary.h b/include/FTLibrary.h
index 39f3caa..ec4ec97 100755
--- a/include/FTLibrary.h
+++ b/include/FTLibrary.h
@@ -79,7 +79,7 @@ class FTGL_EXPORT FTLibrary
* successfully initialised, <code>false</code>
* otherwise.
*/
- bool Init();
+ bool Initialise();
/**
* Freetype library handle.
diff --git a/src/FTLibrary.cpp b/src/FTLibrary.cpp
index 2bf88f8..29ab5ae 100755
--- a/src/FTLibrary.cpp
+++ b/src/FTLibrary.cpp
@@ -32,11 +32,11 @@ FTLibrary::FTLibrary()
: library(0),
err(0)
{
- Init();
+ Initialise();
}
-bool FTLibrary::Init()
+bool FTLibrary::Initialise()
{
if( library != 0)
return true;