]> git.pld-linux.org Git - packages/crossmingw32-wxWidgets.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 29 Jul 2008 23:21:34 +0000 (23:21 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wxWidgets-gif0delay.patch -> 1.4

wxWidgets-gif0delay.patch [deleted file]

diff --git a/wxWidgets-gif0delay.patch b/wxWidgets-gif0delay.patch
deleted file mode 100644 (file)
index 3c4821a..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
---- wxWidgets-2.7.1/src/html/m_image.cpp.orig  2006-10-12 14:52:20.000000000 +0200
-+++ wxWidgets-2.7.1/src/html/m_image.cpp       2006-10-15 20:32:56.000000000 +0200
-@@ -333,6 +333,11 @@
-     DECLARE_NO_COPY_CLASS(wxGIFTimer)
- };
-+
-+static int safedelay(int ms)
-+{
-+       return (ms >= 10) ? ms : 10;
-+}
- #endif
-@@ -388,7 +393,7 @@
-                         if ( m_gifDecoder->IsAnimation() )
-                         {
-                             m_gifTimer = new wxGIFTimer(this);
--                            m_gifTimer->Start(m_gifDecoder->GetDelay(0), true);
-+                            m_gifTimer->Start(safedelay(m_gifDecoder->GetDelay(0)), true);
-                         }
-                         else
-                         {
-@@ -522,7 +527,7 @@
-         win->Refresh(img.HasMask(), &rect);
-     }
--    timer->Start(m_gifDecoder->GetDelay(m_nCurrFrame), true);
-+    timer->Start(safedelay(m_gifDecoder->GetDelay(m_nCurrFrame)), true);
- }
- void wxHtmlImageCell::Layout(int w)
This page took 0.031091 seconds and 4 git commands to generate.