From 25bd4a229b8b239951b39d80ca2fe625328d64bf Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 25 Nov 2004 11:57:43 +0000 Subject: [PATCH] better fix for gcc 3.4 compilation git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9308 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/gtk/GViewBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/gtk/GViewBase.h b/src/frontends/gtk/GViewBase.h index a312970baf..c289d5d3a0 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(Dialog::View::getController()); + return static_cast(this->getController()); } template Controller const & GViewCB::controller() const { - return static_cast(Dialog::View::getController()); + return static_cast(this->getController()); } } // namespace frontend