Merge branch 'master' into gtk3

This commit is contained in:
Hombre
2016-01-11 00:54:25 +01:00
69 changed files with 1940 additions and 1001 deletions

View File

@@ -22,7 +22,7 @@
using namespace rtengine;
RecentBrowser::RecentBrowser () : listener (NULL)
RecentBrowser::RecentBrowser ()
{
recentDirs = Gtk::manage (new MyComboBoxText ());
@@ -46,8 +46,8 @@ void RecentBrowser::selectionChanged ()
Glib::ustring sel = recentDirs->get_active_text ();
if (sel != "" && listener) {
listener->selectDir (sel);
if (!sel.empty() && selectDir) {
selectDir (sel);
}
}