Also fix the missing parent window for the partial-paste and the save-as dialogs.

This commit is contained in:
Adam Reichold
2016-01-10 18:07:06 +01:00
parent 325d153bd4
commit 375ed172e0
11 changed files with 22 additions and 65 deletions

View File

@@ -30,9 +30,9 @@ using namespace rtengine::procparams;
PartialPasteDlg* ProfilePanel::partialProfileDlg;
void ProfilePanel::init ()
void ProfilePanel::init (Gtk::Window* parent)
{
partialProfileDlg = new PartialPasteDlg("Foo");
partialProfileDlg = new PartialPasteDlg (Glib::ustring (), parent);
}
void ProfilePanel::cleanup ()