|
|
|
@ -100,8 +100,8 @@ namespace
|
|
|
|
|
return getWidget <MWGui::BookPage> (name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JournalWindowImpl (MWGui::JournalViewModel::Ptr Model, bool questList)
|
|
|
|
|
: JournalBooks (Model), JournalWindow()
|
|
|
|
|
JournalWindowImpl (MWGui::JournalViewModel::Ptr Model, bool questList, ToUTF8::FromType encoding)
|
|
|
|
|
: JournalBooks (Model, encoding), JournalWindow()
|
|
|
|
|
{
|
|
|
|
|
center();
|
|
|
|
|
|
|
|
|
@ -643,9 +643,9 @@ namespace
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// glue the implementation to the interface
|
|
|
|
|
MWGui::JournalWindow * MWGui::JournalWindow::create (JournalViewModel::Ptr Model, bool questList)
|
|
|
|
|
MWGui::JournalWindow * MWGui::JournalWindow::create (JournalViewModel::Ptr Model, bool questList, ToUTF8::FromType encoding)
|
|
|
|
|
{
|
|
|
|
|
return new JournalWindowImpl (Model, questList);
|
|
|
|
|
return new JournalWindowImpl (Model, questList, encoding);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MWGui::JournalWindow::JournalWindow()
|
|
|
|
|