summaryrefslogtreecommitdiff
path: root/print/lyx15/files/patch-src::frontends::xforms::FormBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'print/lyx15/files/patch-src::frontends::xforms::FormBase.h')
-rw-r--r--print/lyx15/files/patch-src::frontends::xforms::FormBase.h21
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());
+ }
+
+