diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-03-24 11:25:53 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-24 11:25:53 +0000 |
commit | a579c9f67fe7a324fc798b25a4bf6695f01d7193 (patch) | |
tree | ff5cf4962e0ee88241955e4d5928d27339cfdb67 /packages/uicmoc/uicmoc-native-2.3.10 | |
parent | 2e51a053eff454d36e943e50610d823e0c5d320d (diff) |
uicmoc-native 2.3.10: apply patch to make it work with gcc 4.1
fixes bug #771
Diffstat (limited to 'packages/uicmoc/uicmoc-native-2.3.10')
-rw-r--r-- | packages/uicmoc/uicmoc-native-2.3.10/gcc4_1.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/uicmoc/uicmoc-native-2.3.10/gcc4_1.patch b/packages/uicmoc/uicmoc-native-2.3.10/gcc4_1.patch new file mode 100644 index 0000000000..550effd7ba --- /dev/null +++ b/packages/uicmoc/uicmoc-native-2.3.10/gcc4_1.patch @@ -0,0 +1,16 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- qt-2.3.10/src/tools/qvaluestack.h~gcc4 2005-01-23 15:00:47.000000000 +0100 ++++ qt-2.3.10/src/tools/qvaluestack.h 2006-03-19 02:32:56.000000000 +0100 +@@ -54,7 +54,7 @@ + { + T elem( this->last() ); + if ( !this->isEmpty() ) +- remove( this->fromLast() ); ++ this->remove( this->fromLast() ); + return elem; + } + T& top() { return this->last(); } |