Fix some spelling mistakes (mostly in comments).
[dcpomatic.git] / src / wx / content_panel.cc
index a7c9a445482ce486c30eea5b722464479c538631..f51d5ed48da7cd955b9afe8470305be26ab7d7b8 100644 (file)
@@ -483,7 +483,7 @@ ContentPanel::add_folder_clicked ()
                return;
        }
 
-       list<shared_ptr<Content> > content;
+       vector<shared_ptr<Content>> content;
 
        try {
                content = content_factory (path);
@@ -550,7 +550,7 @@ bool
 ContentPanel::remove_clicked (bool hotkey)
 {
        /* If the method was called because Delete was pressed check that our notebook page
-          is visible and that the content list is focussed.
+          is visible and that the content list is focused.
        */
        if (hotkey && (_parent->GetCurrentPage() != _splitter || !_content->HasFocus())) {
                return true;