svn commit: r561886 - head/graphics/xournalpp/files

Yuri Victorovich yuri at FreeBSD.org
Sun Jan 17 23:19:57 UTC 2021


Author: yuri
Date: Sun Jan 17 23:19:56 2021
New Revision: 561886
URL: https://svnweb.freebsd.org/changeset/ports/561886

Log:
  graphics/xournalpp: Patch the bug that the upstream didn't fix for a while
  
  Reported by:	fallout

Added:
  head/graphics/xournalpp/files/patch-src_gui_dialog_toolbarCustomize_ToolbarAdapter.cpp   (contents, props changed)

Added: head/graphics/xournalpp/files/patch-src_gui_dialog_toolbarCustomize_ToolbarAdapter.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/xournalpp/files/patch-src_gui_dialog_toolbarCustomize_ToolbarAdapter.cpp	Sun Jan 17 23:19:56 2021	(r561886)
@@ -0,0 +1,13 @@
+- fix for https://github.com/xournalpp/xournalpp/issues/2222 that the upstream didn't fix for a while now
+
+--- src/gui/dialog/toolbarCustomize/ToolbarAdapter.cpp.orig	2021-01-17 23:11:38 UTC
++++ src/gui/dialog/toolbarCustomize/ToolbarAdapter.cpp
+@@ -271,7 +271,7 @@ bool ToolbarAdapter::toolbarDragMotionCb(GtkToolbar* t
+ 
+ 	ToolItemDragDropData* d = ToolItemDragCurrentData::getData();
+ 
+-	g_return_val_if_fail(d != NULL, NULL);
++	g_return_val_if_fail(d != NULL, false);
+ 
+ 	if (d->type == TOOL_ITEM_ITEM)
+ 	{


More information about the svn-ports-head mailing list