Typo: 'outselves' -> 'ourselves'.
[synfig.git] / synfig-studio / trunk / src / gtkmm / app.cpp
index 7f28f01..b36162d 100644 (file)
@@ -1112,7 +1112,7 @@ init_ui_manager()
 
 App::App(int *argc, char ***argv):
        Gtk::Main(argc,argv),
-       IconControler(etl::dirname((*argv)[0]))
+       IconController(etl::dirname((*argv)[0]))
 {
        app_base_path_=etl::dirname(etl::dirname((*argv)[0]));
 
@@ -1124,8 +1124,8 @@ App::App(int *argc, char ***argv):
 
        gdk_rgb_init();
 
-       // don't call thread_init() if threads are already initialised
-       // on some machines bonobo_init() initialised threads before we get here
+       // don't call thread_init() if threads are already initialized
+       // on some machines bonobo_init() initialized threads before we get here
        if (!g_thread_supported())
                Glib::thread_init();
 
@@ -1444,7 +1444,7 @@ App::add_recent_file(const std::string &file_name)
        if(basename(filename)[0]=='.')
                return;
 
-       // If we aren't an absolute path, turn outselves into one
+       // If we aren't an absolute path, turn ourselves into one
        if(!is_absolute_path(filename))
                filename=absolute_path(filename);