diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2007-08-03 14:15:46 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2007-08-03 14:15:46 +0000 |
commit | d3254fecb91d1a3c3395a2140b54eeffee147fb0 (patch) | |
tree | 07d41b60db8f0e45ca812cd1eb1a5ef5ea1864da | |
parent | e18160e80fe843c513ce2f36d7069e07e7e6bacc (diff) | |
download | ports-d3254fecb91d1a3c3395a2140b54eeffee147fb0.tar.gz ports-d3254fecb91d1a3c3395a2140b54eeffee147fb0.zip |
Notes
-rw-r--r-- | devel/eboxy/files/patch-eboxy::basewidgets::variant.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/eboxy/files/patch-eboxy::basewidgets::variant.cpp b/devel/eboxy/files/patch-eboxy::basewidgets::variant.cpp new file mode 100644 index 000000000000..04e770c6d853 --- /dev/null +++ b/devel/eboxy/files/patch-eboxy::basewidgets::variant.cpp @@ -0,0 +1,11 @@ +--- eboxy/basewidgets/variant.cpp.orig 2007-08-03 16:10:33.000000000 +0200 ++++ eboxy/basewidgets/variant.cpp 2007-08-03 16:10:52.000000000 +0200 +@@ -90,7 +90,7 @@ + + Variant Variant::operator= (void *value) { + SetType(VARTYPE_OBJREF); +- intvalue = (int)value; ++ intvalue = (intptr_t)value; + return *this; + } + |