diff options
Diffstat (limited to 'devel/eboxy')
-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; + } + |