diff --git a/src/frontends/gtk/GViewBase.h b/src/frontends/gtk/GViewBase.h index 8de3237132..a312970baf 100644 --- a/src/frontends/gtk/GViewBase.h +++ b/src/frontends/gtk/GViewBase.h @@ -118,14 +118,14 @@ GViewCB::GViewCB(Dialog & parent, std::string const & t, template Controller & GViewCB::controller() { - return static_cast(getController()); + return static_cast(Dialog::View::getController()); } template Controller const & GViewCB::controller() const { - return static_cast(getController()); + return static_cast(Dialog::View::getController()); } } // namespace frontend diff --git a/src/frontends/gtk/pch.h b/src/frontends/gtk/pch.h new file mode 100644 index 0000000000..66427e4318 --- /dev/null +++ b/src/frontends/gtk/pch.h @@ -0,0 +1,2 @@ +#include +