summaryrefslogtreecommitdiff
path: root/multimedia/subtitleeditor/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2008-05-06 20:39:40 +0000
committerPav Lucistnik <pav@FreeBSD.org>2008-05-06 20:39:40 +0000
commit479ac4063c2a2cbe07c5647e90b5d47a84099cb8 (patch)
tree5453376f0d74cfc5d82e814752d73434fa362feb /multimedia/subtitleeditor/files
parentAdd forgotten files in previous commit: (diff)
- Update to 0.20.0
- Take over maintaining it Approved by: sat (maintainer)
Notes
Notes: svn path=/head/; revision=212751
Diffstat (limited to 'multimedia/subtitleeditor/files')
-rw-r--r--multimedia/subtitleeditor/files/patch-src-CommandSystem.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/subtitleeditor/files/patch-src-CommandSystem.cc b/multimedia/subtitleeditor/files/patch-src-CommandSystem.cc
new file mode 100644
index 000000000000..42304504dfdb
--- /dev/null
+++ b/multimedia/subtitleeditor/files/patch-src-CommandSystem.cc
@@ -0,0 +1,13 @@
+--- src/CommandSystem.cc.orig 2008-02-05 14:17:58.000000000 +0100
++++ src/CommandSystem.cc 2008-04-29 13:29:39.000000000 +0200
+@@ -120,8 +120,8 @@
+ {
+ se_debug(SE_DEBUG_COMMAND);
+
+- std::list<Command*>::const_reverse_iterator it;
+- for(it = m_stack.rbegin(); it!= m_stack.rend(); ++it)
++ std::list<Command*>::const_iterator it;
++ for(it = m_stack.begin(); it!= m_stack.end(); ++it)
+ {
+ (*it)->restore();
+ }