Bump version
[dcpomatic.git] / src / tools / dvdomatic.cc
index fda784048f83e5f3d485ea5b036ab9fa3552c573..b161ac7e33735fe07f6eb6d568c553cf0fd2b08a 100644 (file)
@@ -301,9 +301,17 @@ private:
                
                if (r == wxID_OK) {
 
-                       if (boost::filesystem::exists (d->get_path())) {
-                               error_dialog (this, std_to_wx (String::compose (wx_to_std (_("The directory %1 already exists.")), d->get_path().c_str())));
-                               return;
+                       if (boost::filesystem::exists (d->get_path()) && !boost::filesystem::is_empty(d->get_path())) {
+                               if (!confirm_dialog (
+                                           this,
+                                           std_to_wx (
+                                                   String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
+                                                                                 "Are you sure you want to use it?")),
+                                                                    d->get_path().c_str())
+                                                   )
+                                           )) {
+                                       return;
+                               }
                        }
                        
                        maybe_save_then_delete_film ();
@@ -460,12 +468,13 @@ setup_i18n ()
 {
        int language = wxLANGUAGE_DEFAULT;
 
-       ofstream f ("c:/users/carl hetherington/foo", ios::app);
+       ofstream f ("c:/users/carl hetherington/foo", std::ios::app);
        f << "Hello.\n";
 
-       if (Config::instance()->language()) {
-               f << "Configured language " << Config::instance()->language().get() << "\n";
-               wxLanguageInfo const * li = wxLocale::FindLanguageInfo (std_to_wx (Config::instance()->language().get()));
+       boost::optional<string> config_lang = Config::instance()->language ();
+       if (config_lang && !config_lang->empty ()) {
+               f << "Configured language " << config_lang.get() << "\n";
+               wxLanguageInfo const * li = wxLocale::FindLanguageInfo (std_to_wx (config_lang.get ()));
                f << "LanguageInfo " << li << "\n";
                if (li) {
                        language = li->Language;