diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-08-07 22:32:25 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-08-07 22:32:25 +0000 |
commit | 52c651db2731126712d03bacac6716c854c1a24f (patch) | |
tree | cf445e13508befa8dca78c552b41b39f84dbd15d /print/lyx15/files/patch-src::frontends::xforms::FormBase.h | |
parent | Add missing @dirrm (diff) |
- Fix LyX build with gcc3.4;
- take maintainership.
PR: ports/70095
Submitted by: Andrew Thompson
Obtained from: NetBSD.
Diffstat (limited to 'print/lyx15/files/patch-src::frontends::xforms::FormBase.h')
-rw-r--r-- | print/lyx15/files/patch-src::frontends::xforms::FormBase.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/print/lyx15/files/patch-src::frontends::xforms::FormBase.h b/print/lyx15/files/patch-src::frontends::xforms::FormBase.h new file mode 100644 index 000000000000..ac64841f6101 --- /dev/null +++ b/print/lyx15/files/patch-src::frontends::xforms::FormBase.h @@ -0,0 +1,21 @@ +$NetBSD$ + +--- src/frontends/xforms/FormBase.h.orig 2003-02-01 17:48:38.000000000 -0700 ++++ src/frontends/xforms/FormBase.h +@@ -188,14 +188,14 @@ FormCB<Controller, Base>::FormCB(string + template <class Controller, class Base> + Controller & FormCB<Controller, Base>::controller() + { +- return static_cast<Controller &>(getController()); ++ return static_cast<Controller &>(this->getController()); + } + + + template <class Controller, class Base> + Controller const & FormCB<Controller, Base>::controller() const + { +- return static_cast<Controller const &>(getController()); ++ return static_cast<Controller const &>(this->getController()); + } + + |