aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4
diff options
context:
space:
mode:
authorAlexander Nedotsukov <bland@FreeBSD.org>2004-09-05 11:15:08 +0000
committerAlexander Nedotsukov <bland@FreeBSD.org>2004-09-05 11:15:08 +0000
commit0beb901505303d90cb0e09272a08511e88e5dbb7 (patch)
tree9fc4b55591c8eefe0c8c7dd708415538900813f4 /x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4
parent8f99882307aba9dc025aa7fbc490b66e65e556a9 (diff)
Fix build with gcc 3.4
Approved by: portmgr (krion)
Notes
Notes: svn path=/head/; revision=118114
Diffstat (limited to 'x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4')
-rw-r--r--x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m426
1 files changed, 26 insertions, 0 deletions
diff --git a/x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4 b/x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4
new file mode 100644
index 000000000000..5e48974b17e2
--- /dev/null
+++ b/x11-toolkits/gtkmm12/files/patch-src::build_sources::proxy.h.m4
@@ -0,0 +1,26 @@
+--- src/build_sources/proxy.h.m4.orig Sun Sep 5 05:45:02 2004
++++ src/build_sources/proxy.h.m4 Sun Sep 5 05:50:18 2004
+@@ -174,20 +174,20 @@
+ data.callback=&callback;
+ data.obj=this;
+ SigC::ScopeNode* node=tmp->receiver();
+- obj->register_data(node);
++ this->obj->register_data(node);
+ return tmp;
+ }
+
+ RType emit(ARG_BOTH($1))
+ {
+ return reinterpret_cast<RType (*)(LIST(gObj*,1,ARG_TYPE($1),[$1]))>
+- (emit_func) (LIST(obj->gtkobj(),1,ARG_NAME($1),[$1]));
++ (emit_func) (LIST(this->obj->gtkobj(),1,ARG_NAME($1),[$1]));
+ }
+
+ RType operator()(ARG_BOTH($1))
+ {
+ return reinterpret_cast<RType (*)(LIST(gObj*,1,ARG_TYPE($1),[$1]))>
+- (emit_func) (LIST(obj->gtkobj(),1,ARG_NAME($1),[$1]));
++ (emit_func) (LIST(this->obj->gtkobj(),1,ARG_NAME($1),[$1]));
+ }
+
+ };