summaryrefslogtreecommitdiff
path: root/extra/amule
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-05-28 20:14:47 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-05-28 20:14:47 +0000
commitedec45419def1b81bd663a2859684ef55ba56269 (patch)
treecaa3c2d5f4e55b38e7740a39d80a21507679c586 /extra/amule
parent483f7de4ab6a706517279a24d2efc969f4a1996d (diff)
Mon May 28 20:14:39 UTC 2012
Diffstat (limited to 'extra/amule')
-rw-r--r--extra/amule/gcc4.7.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/extra/amule/gcc4.7.patch b/extra/amule/gcc4.7.patch
deleted file mode 100644
index 2bfcbe057..000000000
--- a/extra/amule/gcc4.7.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/src/ObservableQueue.h 2011-11-20 19:08:59.000000000 +0100
-+++ b/src/ObservableQueue.h 2012-04-11 00:06:28.000000000 +0200
-@@ -331,14 +331,14 @@
- template <typename ValueType>
- void CObservableQueue<ValueType>::ObserverAdded( ObserverType* o )
- {
-- NotifyObservers( EventType( EventType::STARTING ), o );
-+ this->NotifyObservers( EventType( EventType::STARTING ), o );
- }
-
-
- template <typename ValueType>
- void CObservableQueue<ValueType>::ObserverRemoved( ObserverType* o )
- {
-- NotifyObservers( EventType( EventType::STOPPING ), o );
-+ this->NotifyObservers( EventType( EventType::STOPPING ), o );
- }
-
-