diff options
author | Max Khon <fjoe@FreeBSD.org> | 2005-08-14 13:43:22 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2005-08-14 13:43:22 +0000 |
commit | 77414578dfcaf2b0b8b9035e58309f15925a4112 (patch) | |
tree | c56f95ce83e0b1741dd6ab50d9045cf5d1c791d1 /graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp | |
parent | Fix pkg-plist (this file did not get into previous commit) (diff) |
- Fix build on RELENG_4.
- Fix dependencies on wxgtk (include lib versions, otherwise
wxgtk2 2.6.x libarries could match)
- Bump PORTREVISION.
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=140875
Diffstat (limited to 'graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp')
-rw-r--r-- | graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp b/graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp new file mode 100644 index 000000000000..be910b25f420 --- /dev/null +++ b/graphics/hugin/files/patch-src-hugin-ImagesPanel.cpp @@ -0,0 +1,15 @@ +--- src/hugin/ImagesPanel.cpp.orig Thu Aug 11 20:18:49 2005 ++++ src/hugin/ImagesPanel.cpp Thu Aug 11 20:20:24 2005 +@@ -448,9 +448,9 @@ + for (UIntSet::const_iterator it = selImg.begin(); + it != selImg.end(); ++it ) + { +- vars[i].insert(make_pair("y", Variable("y",0.0))); +- vars[i].insert(make_pair("p", Variable("p",0.0))); +- vars[i].insert(make_pair("r", Variable("r",0.0))); ++ vars[i].insert(make_pair((char *) "y", Variable("y",0.0))); ++ vars[i].insert(make_pair((char *) "p", Variable("p",0.0))); ++ vars[i].insert(make_pair((char *) "r", Variable("r",0.0))); + i++; + } + GlobalCmdHist::getInstance().addCommand( |