diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2005-04-23 21:06:40 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2005-04-23 21:06:40 +0000 |
commit | 912a0e2310bc2d481929cb5bd6a9d2666cfb955b (patch) | |
tree | 86500243472f5dda32823dee81b8a9cb659fe4c9 /games/pipenightdreams/files/patch-pointer.h | |
parent | - Add pkg-install. It enable package build. (diff) |
Unbreak with new GCC by fixing bad C++ code.
PR: 77809
Submitted by: self
Approved by: maintainer timeout (2 months)
Notes
Notes:
svn path=/head/; revision=134020
Diffstat (limited to 'games/pipenightdreams/files/patch-pointer.h')
-rw-r--r-- | games/pipenightdreams/files/patch-pointer.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/games/pipenightdreams/files/patch-pointer.h b/games/pipenightdreams/files/patch-pointer.h new file mode 100644 index 000000000000..388b83597c3d --- /dev/null +++ b/games/pipenightdreams/files/patch-pointer.h @@ -0,0 +1,15 @@ +--- src/pointer.h.orig Sat Jan 1 14:55:27 2005 ++++ src/pointer.h Sat Jan 1 14:56:09 2005 +@@ -45,9 +45,9 @@ + + inline void setRow(int row); + inline void setColumn(int column); +- inline void setRowColumn(int row, int column); +- inline void setMoved(bool flag); +- inline bool moved(); ++ void setRowColumn(int row, int column); ++ void setMoved(bool flag); ++ bool moved(); + + Str * image_name; + Image * ima; |