Revert one of the i18n changes that causes a crash in studio. Thanks to dooglus for...
[synfig.git] / synfig-studio / trunk / src / gtkmm / toolbox.cpp
index fc5bd58..7bcdd14 100644 (file)
@@ -79,6 +79,8 @@
 
 #include <synfigapp/main.h>
 
+#include "general.h"
+
 #endif
 
 using namespace std;
@@ -589,7 +591,7 @@ Toolbox::on_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& contex
                synfig::String selection_data((gchar *)(selection_data_.get_data()));
 
                // For some reason, GTK hands us a list of URLs separated
-               // by not only Carrage-Returns, but also Line-Feeds.
+               // by not only Carriage-Returns, but also Line-Feeds.
                // Line-Feeds will mess us up. Remove all the line-feeds.
                while(selection_data.find_first_of('\r')!=synfig::String::npos)
                        selection_data.erase(selection_data.begin()+selection_data.find_first_of('\r'));