[arch-commits] Commit in poedit/trunk (2 files)

Jaroslav Lichtblau jlichtblau at archlinux.org
Mon Dec 11 19:39:20 UTC 2017


    Date: Monday, December 11, 2017 @ 19:39:19
  Author: jlichtblau
Revision: 273848

upgpkg: poedit 1:2.0.5-1 - new upstream release
obsolete patch files deleted

Deleted:
  poedit/trunk/icu59.patch
  poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch

----------------------------------------------------+
 icu59.patch                                        |   11 -------
 poedit-2.0.2_fix_drawroundedrectangle_assert.patch |   29 -------------------
 2 files changed, 40 deletions(-)

Deleted: icu59.patch
===================================================================
--- icu59.patch	2017-12-11 19:38:38 UTC (rev 273847)
+++ icu59.patch	2017-12-11 19:39:19 UTC (rev 273848)
@@ -1,11 +0,0 @@
-diff -upr poedit-2.0.1.orig/src/unicode_helpers.cpp poedit-2.0.1/src/unicode_helpers.cpp
---- poedit-2.0.1.orig/src/unicode_helpers.cpp	2017-04-26 10:55:31.807183266 +0300
-+++ poedit-2.0.1/src/unicode_helpers.cpp	2017-04-26 11:02:47.373899526 +0300
-@@ -25,6 +25,7 @@
- 
- #include "unicode_helpers.h"
- 
-+#include <unicode/unistr.h>
- #include "str_helpers.h"
- 
- #include <unicode/ubidi.h>

Deleted: poedit-2.0.2_fix_drawroundedrectangle_assert.patch
===================================================================
--- poedit-2.0.2_fix_drawroundedrectangle_assert.patch	2017-12-11 19:38:38 UTC (rev 273847)
+++ poedit-2.0.2_fix_drawroundedrectangle_assert.patch	2017-12-11 19:39:19 UTC (rev 273848)
@@ -1,29 +0,0 @@
-From 86e0677f48a309314b45ba5f06c1c62d14b2200d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Va=CC=81clav=20Slavi=CC=81k?= <vaclav at slavik.io>
-Date: Thu, 1 Jun 2017 19:19:44 +0200
-Subject: [PATCH] Fix DrawRoundedRectangle assert with wxGTK 3.0
-
-Don't draw if w=0.
-
-Fixes #396.
----
- src/editing_area.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/src/editing_area.cpp b/src/editing_area.cpp
-index e70cce66c..336a4db54 100644
---- a/src/editing_area.cpp
-+++ b/src/editing_area.cpp
-@@ -251,7 +251,8 @@ private:
-         gc->SetPen(*wxTRANSPARENT_PEN);
- 
-         auto rect = GetClientRect();
--        gc->DrawRoundedRectangle(rect.x, rect.y, rect.width, rect.height, PX(2));
-+        if (!rect.IsEmpty())
-+            gc->DrawRectangle(rect.x, rect.y, rect.width, rect.height);
-     }
- 
-     wxColour m_fg, m_bg;
--- 
-2.13.0
-



More information about the arch-commits mailing list