freebsd-ports/graphics/k3d/files/patch-k3dsdk__data.h
Armin Pirkovitsch 4e2ed1e73e - Update to version 0.8.0.2
- Update WWW: line
- Switch to optionsng
- Add LICENSE

PR:           ports/169418
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by:  beat (mentor)
2012-07-22 19:22:58 +00:00

29 lines
721 B
C++

--- k3dsdk/data.h.orig 2010-07-03 11:27:46.000000000 +0900
+++ k3dsdk/data.h 2012-06-20 16:00:25.000000000 +0900
@@ -580,7 +580,7 @@
try
{
- set_value(boost::lexical_cast<value_t>(*new_value), Hint);
+ this->set_value(boost::lexical_cast<value_t>(*new_value), Hint);
return true;
}
catch(...)
@@ -865,7 +865,7 @@
try
{
- set_value(boost::lexical_cast<value_t>(*new_value), Hint);
+ this->set_value(boost::lexical_cast<value_t>(*new_value), Hint);
return true;
}
catch(...)
@@ -1011,7 +1011,7 @@
try
{
- set_value(boost::lexical_cast<value_t>(*new_value), Hint);
+ this->set_value(boost::lexical_cast<value_t>(*new_value), Hint);
return true;
}
catch(...)