diff options
author | Christoph Mende <angelos@gentoo.org> | 2009-01-19 09:27:53 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2009-01-19 09:27:53 +0000 |
commit | 59bfeea940dff83535cbed71a2f61679b1776c43 (patch) | |
tree | b3fc16cf4b0af5f4edf246056a8e42ae9cdbb462 /x11-libs/xfc/files | |
parent | remove old (diff) | |
download | historical-59bfeea940dff83535cbed71a2f61679b1776c43.tar.gz historical-59bfeea940dff83535cbed71a2f61679b1776c43.tar.bz2 historical-59bfeea940dff83535cbed71a2f61679b1776c43.zip |
Removed x11-libs/xfc
Diffstat (limited to 'x11-libs/xfc/files')
-rw-r--r-- | x11-libs/xfc/files/xfc-4.3.2-64bit-examples.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-libs/xfc/files/xfc-4.3.2-64bit-examples.patch b/x11-libs/xfc/files/xfc-4.3.2-64bit-examples.patch deleted file mode 100644 index 4ef2f8766d88..000000000000 --- a/x11-libs/xfc/files/xfc-4.3.2-64bit-examples.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- xfc-4.3.2/examples/howto/selection/selection.cc.orig 2008-09-22 00:26:26.000000000 +0200 -+++ xfc-4.3.2/examples/howto/selection/selection.cc 2008-09-22 00:26:50.000000000 +0200 -@@ -3,6 +3,7 @@ - #include <xfc/gtk/buttonbox.hh> - #include <xfc/gtk/label.hh> - #include <iostream> -+#include <stdint.h> - - std::vector<Gtk::TargetEntry> SupplySelectionButton::target_entries; - -@@ -47,7 +48,7 @@ - cout << " * type() = " << selection_data.get_type() << endl; - cout << " * format() = " << selection_data.format() << endl; - cout.setf(ios_base::hex, ios_base::basefield); -- cout << " * data() = 0x" << reinterpret_cast<unsigned int>(selection_data.data()) << endl; -+ cout << " * data() = 0x" << reinterpret_cast<unsigned uintptr_t>(selection_data.data()) << endl; - cout.setf(ios_base::dec, ios_base::basefield); - cout << " * length() = " << selection_data.length() << endl << endl; - |